Forum member
CoolBreeze
79 posts
Posts by CoolBreeze
-
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…
10 Apr 2015 16:25 UTC
-
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…
08 Apr 2015 19:59 UTC
-
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..…
07 Apr 2015 21:31 UTC
-
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…
07 Apr 2015 14:35 UTC
-
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…
06 Apr 2015 16:06 UTC
-
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 …
01 Apr 2015 12:38 UTC
-
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…
30 Mar 2015 17:05 UTC
-
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…
30 Mar 2015 16:48 UTC
-
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. …
30 Mar 2015 14:36 UTC
-
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…
27 Mar 2015 17:09 UTC
-
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…
24 Mar 2015 16:34 UTC
-
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…
11 Mar 2015 19:20 UTC
-
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…
10 Mar 2015 21:22 UTC
-
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
13 Feb 2015 19:44 UTC
-
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…
10 Sep 2014 19:55 UTC
-
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…
15 Jul 2014 15:22 UTC
-
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
15 Jul 2014 15:03 UTC
-
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
14 Jul 2014 21:06 UTC
-
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…
11 Jul 2014 16:10 UTC