Forum member

jnijni

6 posts

Posts by jnijni

  1. Behavior around unused references different from MSTest

    Hi, This is what I expected, it is indeed hard to mimic this behavior. However, I would look over to mstest's code (if it's open source - otherwise you would need to poke around) to see how they do it, maybe it's just a simple "grep (imports|using) <namespace>" and it would be easy to reproduce …

  2. Behavior around unused references different from MSTest

    Hi, We hit a weird issue this morning where our test was running fine under nCrunch, but would fait with resharper or mstest. It turned out that a required DLL that is referenced in the project was copied over by nCrunch, but not mstest. This dll is referenced in our project, but is never use…

  3. Fail on private TestInitialize

    Hi, MSBuild will fail on private TestInitialize methods, but NCrunch doesn't. R# will fail too. Therefore, we ended up with a bunch of tests that were working on our machines, but not during the CI process. It would be nice if NCrunch would fail there too (or maybe just give a warning?). …

  4. TDD statistics

    Hi, Here is a very low-priority nice to have feature I think would be cool (but just "cool", not useful). It would be fun to have some statistics on your TDD cycle, like : * Time spent in each phase (red/green) in a day? week? * Number of times you went from red to green * Average durati…

  5. JS testing support

    Fair enough, thanks for the interest in the matter!

  6. JS testing support

    Hi, I'm not sure if I'm simply blind, but I can't find this feature. It would be greatly appreciated if nCrunch could run JS tests. I am presently using Jasmine, one of the best known JS test framework, and I have to run my tests manually elsewhere. You could look at what R# does, it can …