Forum member
otac0n
51 posts
Posts by otac0n
-
The changelist link for 1.34b on the download page is incorrect.
The changelist link for 1.34b on the download page is incorrect.
18 Oct 2011 18:52 UTC
-
Different test results with ncrunch and NUnit tool
Arguably, you should use the `Assert.That(() => { }, Throws.InstanceOf<>());` method, anyways. You should be able to write your own constraint that would support subclasses, too.
14 Jun 2011 21:38 UTC
-
NCrunch cannot build my tests project, since it relies on the models project to generate a stub.
Is AdditionalFilesToInclude an NCrunch thing or are you re-using an existing mechanism?
26 May 2011 11:29 UTC
-
NCrunch cannot build my tests project, since it relies on the models project to generate a stub.
Well, NCrunch seems to be handling the MSBuild stuff just fine. The issue is that NCrunch isn't keeping the whole solution structure consistent, just the individual projects. I'm sure there is a reason it is done that way, but my particular template relies on cross-compiling, basically. I hav…
26 May 2011 01:35 UTC
-
NCrunch cannot build my tests project, since it relies on the models project to generate a stub.
I am using the Visualization and Modeling SDK to automatically regenerate my T4 templates on build. The T4 template I have reads my EDMX file and automatically generates an In-memory Stub version of my database. It appears that NCrunch has an issue with that, reporting build failure. It doesn…
23 May 2011 13:01 UTC
-
Problem with NUnit TestCase attribute
All that being said, if you are using NUnit's built-in test discovery mechanisms, there is no discernable difference between a bunch of [TestCase]s and a single [Theory] attribute. I believe that the 'Assume' rules... [*]If the assumptions are violated for all test cases, then the Theory itself …
22 May 2011 18:09 UTC
-
Problem with NUnit TestCase attribute
Inconclusive test states are used primarily for row tests, integration tests, and theories. Theories are used like this: [code=csharp][Datapoints] int[] possibleComparisonResults = { -100, -2, -1, 0, 1, 100, 1000, int.MaxValue, int.MinValue }; [Theory] Reverse_WhenPassedValidValues_Succee…
22 May 2011 18:02 UTC
-
Problem: Blocking Third-Party Assemblies with VS2010
Would it be possible to [url=http://en.wikipedia.org/wiki/Shadow_Copy]Shadow Copy[/url] the references and test assembly for the duration of the tests? I believe that the NUnit GUI test runner does this.
22 May 2011 15:21 UTC
-
Run failed tests first?
Does NCrunch run failed tests first? If not, I think that this could be an easy way to shorten feedback cycles.
22 May 2011 15:06 UTC
-
Color blind friendly colors by default, please.
I already posted this as feedback through the plugin, but the default color scheme is bad for color blind individuals. I have changed my color scheme to be easy for myself to use, but I think that it would be beneficial to switch the defaults to a more color-blind-friendly set. (#FF0000 and #000…
22 May 2011 14:51 UTC
-
Problem with NUnit TestCase attribute
When you do add it, please keep in mind that NUnit also supports "Theories". Also, I don't see any indication that a test is "Inconclusive", is that going to be supported?
22 May 2011 14:33 UTC