Forum member

jomtois

10 posts

Posts by jomtois

  1. Add Pin/Unpin tests on assembly level

    I guess I don't care so much about the namespace groupings, the test fixtures within each project/namespace is fine. I definitely like how it works now with having the fixture pinned it automatically pins and runs new tests as they are added. I would probably not care whether it auto-added new tes…

  2. Add Pin/Unpin tests on assembly level

    No problem, I will explain how I use the pinned tests, maybe there is better way to accomplish the same thing that I have not tried yet. Usually I leave my engine mode to "Pinned tests automatically/others manually". So what I will do is manually run all tests (minus ignored of course) when I star…

  3. Add Pin/Unpin tests on assembly level

    I would still like to see the ability to pin all from the assembly level. As it stands now, when I expand the assembly, each class is expanded with its tests, so I have to roll them all up then select them and scroll. On perhaps a tangential note, I use git for source control so I switch branches …

  4. Optional default generic parameter on object type is resolving to System.Reflection.Missing not null

    Great news. In this specific situation it ended up not hurting me as I discovered I needed to add a constraint on the method to only accept IComparable<T>, which eliminated the System.Object parameter as acceptable anyway, however there may come a time where there are other cases when that is not t…

  5. Optional default generic parameter on object type is resolving to System.Reflection.Missing not null

    Couple extra data points: I just changed framework to .NET 4.0 for both libraries and still get the NCrunch test failure. So it doesn't seem to be target framework specific. I also used NuGet to grab the latest NUnit version for the posted solution and got the same NCrunch test failure. So t…

  6. Optional default generic parameter on object type is resolving to System.Reflection.Missing not null

    I've pared down the solution to the bare minimum required for me to reproduce the issue. I've tested on two machines with the same result. (- BROKEN LINK -)(- BROKEN LINK -)[/url] (- BROKEN LINK -)Screenshot[/url] (- BROKEN LINK -)Success in Resharper[/url] Using NCrunch 1.42.0.12 Co…

  7. Optional default generic parameter on object type is resolving to System.Reflection.Missing not null

    I have a public extension method that looks like this: [code=csharp]public static T MinOrDefault <T>(this IEnumerable<T> source, T defaultValue = default(T)) { return MinOrDefaultImplementation(source, defaultValue); }[/code] I have an NUnit unit test that looks like this: [code=cs…

  8. NCrunch rebuild all projects and runs all the tests when code changes

    Sorry for horning in on an older post but I have a relevant question to this thread -- how come if I change even one character in the XML documentation comments (or actually any comment) it rebuilds and re-runs all my tests (depending on engine mode)? Unless I'm commenting or un - commenting actua…

  9. ncrunch.TestHost.x86.exe has stopped working - Bug

    Thank you for your response. I knew the code was bad, but now I understand the difficulty you would have in catching that kind of error. I was a little surprised at the pop up, so I wanted to make sure it wasn't something you were not aware of. Sounds like you have it under control. I have only …

  10. ncrunch.TestHost.x86.exe has stopped working - Bug

    I tried to use the bug report feature, but it would not work. The following code will cause ncrunch to crash when automatic test running is enabled. Visual studio 2010, NUnit 2.5.1 that comes with ReSharper 6: [code=csharp] using System.Collections; using System.Collections.Generic; using …