Forum member
CoolBreeze
79 posts
Posts by CoolBreeze
-
Installing 2019 Insufficient Privileges
Yeah, I thought I'd have to go to my IT help desk or management to get this fixed. But, I thought there might a slim chance I overlooked some minor privilege item I could have tweaked, on my own, to make the install work. So, I thought it was worthwhile to ask. Thanks for the quick reply and…
24 May 2022 15:25 UTC
-
Installing 2019 Insufficient Privileges
I'm trying to install NCrunch_VS2019_4.13.01. The Installer is reporting: "The Install has insufficient privileges to modify this file: C:\Program FIles 9x86)\Microsoft Visual Studio\2019\Professional\Common7\IDE\Extensions\Remoco SoftwareNCrunch for Visual Studio 2019\AWSSDK.DLL" I was ab…
23 May 2022 14:48 UTC
-
Trying to Run All Tests; Icons are Changed
I'm trying to run all tests in my solution. Suppose I have these test projects: TESTS_BLL TESTS_Controls TESTS_Library I select the NCrunch Tests window. I enter TESTS_BD_BLL into the search text box. I see the selected test project and the test classes under the TESTS_BLL. There ar…
21 Apr 2022 17:18 UTC
-
Code coverage not appearing (newbie question)
For the moment, I only saw this on one file. If I see it again I'll post a reply. Ed
16 Apr 2022 14:54 UTC
-
Code coverage not appearing (newbie question)
Hi, I ran into a similar problem. I was seeing code coverage markers in one of my VB code files. Then I added ncrunch: no coverage start, no coverage end to some but not all methods. Then NCrunch didn't show any markers for the entire file. I closed and reopened the solution. The markers …
15 Apr 2022 16:53 UTC
-
Test Run Life Cycle
Hi Remco, Thank you very much for your detailed explanation of the "behind" the scenes processing steps of NCrunch. Although, I've used NUnit and NCrunch for several years that explanation helped me to get a better understanding and I'm sure will help me in writing tests in the future. I was …
09 Dec 2021 16:51 UTC
-
Test Run Life Cycle
Hi, I was updating a test and expected New, Setup, Factory, and Test methods to be called in a specific order, but they were not. To understand the call order of methods in a test calls: I wrote a simple test class to write out the name of the method it was called in (I pasted the code belo…
07 Dec 2021 21:19 UTC
-
Click Configuration; VS2019 Crashes and Stops Working
Hi, I'm using VS2019 and NCrunch 4.10.0.6 I bring up the NCrunch menu. I click on Configuration or Configuration Wizard. VS2019 crashes with "Microsoft Visual Studio 2019 has stopped working." dialog. I restarted VS2019. I repeated the above steps 3-4 times and noticed VS2019 consistent…
02 Nov 2021 16:52 UTC
-
Location of Search Box
Hi, I was wondering if the Search box could be relocated or setup to allow the user to reposition the search box if they want it in a different location. In order to do a search I have to: 1) Mouse to the grey rectangle on the right-side of the menu. 2) Click on the grey rectangle. 3) Move …
04 Aug 2021 15:01 UTC
-
Tests with Category Not Showing Up in Tests Window
Hi, I enabled the Categories column. I see the Categories column and I see the EntityFramework Category and other Categories I've assigned to other tests in this column. re: If you're able to produce a standalone code sample where an attached category is not being recognised on a child test, w…
04 Aug 2021 14:36 UTC
-
Tests with Category Not Showing Up in Tests Window
Hi Remco, Oops, sorry to leave off the test framework info. Here it is: Visual Studio 2019 4.9.08 (I just upgraded last week). I tried both versions of the attribute: <Category("EntityFramework") <NUnit.Framework.Category("EntityFramework")> Neither version works. Additio…
02 Aug 2021 17:33 UTC
-
Tests with Category Not Showing Up in Tests Window
Hi, I just added EntityFramework (EF) to my very large solution. I updated a few modules to access an Organizations database to use EF. I wanted to test only those updated modules using EF. I added <Category("EntityFramework")> to three tests (Tests not TestFixtures). I saw the three tes…
30 Jul 2021 19:54 UTC
-
Tests Not DIsplayed
I solved my problem. Maybe I have some visual dyslexia or something. Even though I've used NCrunch for years I've always been confused by the Show Passing Tests and Show Failing Tests icons. Those two icons are shown in two locations: 1) the dropdown list when one clicks on the down arro…
20 Nov 2020 20:07 UTC
-
Tests Not DIsplayed
Also, I put in: Debug.WriteLine("Test1") into Test_2. See previous Reply. NCrunch automatically runs the test. I don't see "Test1" in the Trace Output window. Maybe that's b\c I can't select the test that just ran in the tests tree structure. Ed
20 Nov 2020 19:54 UTC
-
Tests Not DIsplayed
I submitted the Bug Report. re: When the test disappears from the Tests Window, do its coverage markers also disappear from the source code? I'm testing a ASP.NET custom validator: I created a simple method in the custom validator under test: Public Sub Test() Dim Debug As Boo…
20 Nov 2020 19:49 UTC
-
Tests Not DIsplayed
Different VS Solution from my previous problem about Metrics Not Showing. Solution has three projects: * Main VB code project. * Test project with two test code files. * Test project with .ASPX forms for testing UI controls. All three projects successfully build. I have Show Passing Test…
19 Nov 2020 17:28 UTC
-
Metrics Not Being Computed
The problem was "Lost Project References". Once I updated the references to use Project references I now see the code coverage markers as expected. Thanks! Ed
19 Nov 2020 16:48 UTC
-
Metrics Not Being Computed
Hi Remco, re: - On the projects missing metrics, do you still have coverage markers? All code lines have black coverage markers. re: - If so, are the coverage markers aligned with the metrics being aggregated? I don't understand your question. re: - Does the metrics window still show the …
18 Nov 2020 20:00 UTC
-
Metrics Not Being Computed
I have several VB class libraries. For each library I had a test project with test files. Everything worked just fine. NCrunch discovered and ran the tests, computed Metrics. I saw the metrics in the NCrunch Metrics window. For better or worse, I was asked to copy the class libraries and test …
10 Nov 2020 19:59 UTC
-
ERROR (Build): TEST_svcHMRMgr_Library: (0): System.NotImplementedException: GenericInst
Hi, Yes, I worked around the problem like this: <TestCase("CSV")> <TestCase("Single_Line")> Public Sub Test(Input_Format AS String) Select Case Input_Format Case "CSV" ' Do CSV test. Case 'Single_Line" End Select End Sub Not the most elegant b…
10 Aug 2019 13:08 UTC