Forum member

CoolBreeze

79 posts

Posts by CoolBreeze

  1. NCrunch, MbUnit, NUnit

    Hi Remco, I think the problem has to do with when the developer first adds NUnit to the project by adding a reference, adding the imports and decorating a method with <Test>. I'm wondering if NCrunch is not picking up the initial change to NUnit. I added Nunit and NCrunch to a completely diff…

  2. NCrunch, MbUnit, NUnit

    Remco, I have a test project with 50+ test classes using mbUnit. I installed NUnit and then changed the imports from MbUnit to MUnit for one of the test classes and then decorated the tests with the Nunit attributes. NCrunch Tests window shows only the MbUnit tests but doesn't show the NUnit t…

  3. Test Order

    Hi Remco, Based on your comment: "...largely because so few people still use this [[MbUnit] framework ..." and the fact that MbUnit hasn't had any updates in a long time I decided to look for a new test framework (I love MbUnit and I'm proficient in it so it's sad :( to move to a new framework..…

  4. Test Order

    Hi Remco, The original test code was a single function (not two as I showed it in my original post). The test code was testing a function which worked like this: 1) Gets values from Green database. 2) Gets values from Yellow database based on the data retrieved from the Green database. 3) Up…

  5. Test Order

    Hi Remco, I have two tests: Private m_Tests As New List(of Test) <Test(Order:=1)> _ Public Sub Prepare(<Factory("TestFactory")> TestObj As Test) ' Do a test ' then add Test data to list. m_Tests.Add(TestObj) Gallio.Framework.TestLog.WriteLine("Prepare") End Sub <Tes…

  6. Visual Studio 2013 Community Edition Support

    Hi Remco, I'm using VS 2012 Express for a client project. I noticed that Ncrunch 2012 wouldn't install on the client server where VS 2012 express was installed. Then I discovered that VS 2012 express doesn't support extensions. However, I see that there's a VS 2013 Community Edition available …

  7. Build Fails: Single-threaded Apartment

    Hi Remco, I solved the problem. These warnings were causing the problem. vbc(0,0): error BC2026: warning number '42353' for the option 'nowarn' is either not configurable or not valid vbc(0,0): error BC2026: warning number '42354' for the option 'nowarn' is either not configurable or not v…

  8. Build Fails: Single-threaded Apartment

    Hi Remco, Here's my progress. I upgraded the solution from VS 2008 to VS 2010. NCrunch successfully built the project. I was able to successfully run a single test. I built the Setup project. I successfully installed the project on my box Windows 7 Pro. I tried to install the app on Serve…

  9. Build Fails: Single-threaded Apartment

    Hi Remco, Thanks for the suggestion. I confirmed that the project has Treat Warnings as Errors unchecked. I did have one project that was failing to build (after I enabled NCrunch). I unloaded that project. In VS 2008 I did a Clean Solution and Rebuild Solution. The build is successful. …

  10. Build Fails: Single-threaded Apartment

    Build fails with: NCrunch: If you are experiencing problems in getting this project to build, have a look at http://www.ncrunch.net/documentation/troubleshooting_project-build-issues vbc (0): warning number '42353' for the option 'nowarn' is either not configurable or not valid vbc (0): warning…

  11. No Green Checkmark when Test Successfully Ends

    I have a suite of tests to test the UI of a web application. I'm using NCrunch.Net, MbUnit, and Selenium. When I run most of the tests and when they succeed NCrunch displays the green check mark as expected to the left of the test name. When I run one specific test the test appears to run thro…

  12. Thread Aborted and Timeout of 60000 Expired Exceptions

    Hi, I added the NCurnch timeout attribute and that appeared to solve my problem. But the test timed out by hitting the default MbUnit test timeout limit. So here's a complete step-by-step solution: 1. Use NuGet to download and install the NCrunch.Framework into your solution. 2. Add I…

  13. Thread Aborted and Timeout of 60000 Expired Exceptions

    I'm encountering the "Thread was being aborted" and "Timeout of 60000 expired" exceptions. I'm using Selenium, MBUnit and NCrunch (2.13) and Visual Studio 2010. My test builds all the test cases and then performs the actual tests. The test build function calls New CrytoStream() to decipher sev…

  14. Where's Gallio.Framework.TestLog.WriteLine output go to?

    When I call Gallio.Framework.TestLog.WriteLine where does the output go to and what do I need to do to view it? CB

  15. How to Purge NCrunch Test Runner Folders

    I can't build a Visual Studio project and I suspect it's due to being low on disk space. I ran WinDirStat and noticed there'sover nine thousand NCrunch folders in: FusionLogs\Default with the prefix name: nCrunch.TestRunner_ For the moment I'll select the folders and then delete them. But w…

  16. How to Easily and Quickly Identify Uncovered Methods

    I want to be able to quickly identify which modules have been executed by my tests and which modules have not been executed by my tests. For example: One of my code files has these modules: IdNew Read ReadById ReadCounts ReadInfo Validate I've written tests for: IdNew, Read, and ReadCo…

  17. Code Coverage in Separate Solution

    Hi Remco, Thank you for your answer. I moved my tests from the test solution to my main solution as you suggested. I can now see the covered or uncovered lines in my main code files. Thanks! Ed

  18. Code Coverage in Separate Solution

    Should I move my tests from my test solution to my main solution in order to see the code coverage information for the code files in the main solution? Thanks, Ed

  19. Code Coverage in Separate Solution

    I just downloaded, installed, and enabled NCrunch. I'm using: VS 2012, Gallio, MbUnit. I've a main solution with several projects. At this point I want to test code in one key project in the main solution. I'll want to test code in the other projects at some future time. I've a second sepa…