Forum member

otac0n

51 posts

Posts by otac0n

  1. The changelist link for 1.34b on the download page is incorrect.

    The changelist link for 1.34b on the download page is incorrect.

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

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

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

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

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

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

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

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

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

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