Forum member

CoolBreeze

79 posts

Posts by CoolBreeze

  1. 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…

  2. 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…

  3. 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…

  4. 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

  5. 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 …

  6. 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 …

  7. 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…

  8. 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…

  9. 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 …

  10. 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…

  11. 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…

  12. 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…

  13. 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…

  14. 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

  15. 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…

  16. 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…

  17. 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

  18. 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 …

  19. 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 …

  20. 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…