Forum member

samJones

8 posts

Posts by samJones

  1. code coverage shows all black... but that isn't right...

    [quote=Remco;9202]Does the test have a little '>' arrow marker on its first line?[/quote] In VS Editor or in the ncrunch test runner view? VS Editor: No ncrunch runner: not sure if this project even is showing up in the list (seems not to be). I can run the tests interactively (via testdriven…

  2. code coverage shows all black... but that isn't right...

    OK, all code markers are black, affects everything, not just this one test. The difference is: In the past, I would open a single project, run the tests in that project, and code coverage markers work fine. That was my eval of ncrunch. Now, in real life, we have a solution open, which has 9…

  3. ncrunch server versioning... backward compat?

    So.... I installed latest ncrunch on my desktop.... but now local ncrunch refuses to use ncrunch server, because local is newer. If I update server, will other devs, on slighly older ncrunch (within past 6 months) be able to use latest server? Or must everything be exactly same build of ncrunc…

  4. code coverage shows all black... but that isn't right...

    We have a large sln (90+ projects). In the past, I have opened a unit test, run the tests, and the code coverage indicators are magically there. Today I opened a unit test I have never worked on (nunit), run the tests (this does tests and multiple iterations to make sure we do not introduce s…

  5. Grid node: hard drive filled quickly...

    [size=7] Grid node ran out of disk space in no time.... Resolution: Clean up most subdirs under: C:\NCrunch Grid Node\Snapshots\ Our test process includes a 250MB SQL Lite file.... Grid node has 80GB hard drive. How do we get ncrunch to be better about cleanup? (And perhaps ncrunch …

  6. Is the nCrunch test env x64 or x86, and how to control it?

    (Apologies if this is a dupe, a colleague was going to post this, but I don't see the post) Our code uses a native lib (sqllite dll). This dll exists in x86 and x64 versions, but the thing has the same name (so you can't tell which one you are looking at, very frustrating). It appears that hat…

  7. Use at compile time to report coverage per cs file?

    [size=8]Parsing xml sounds doable. Question is... how do we even run ncrunch on build system? Currently, the process is: [list=1][*]msbuild -- solution [*]run a bunch of nunit console apps // built by solution, if one fails the build fails[/list] What would it look like in an ncrunch c…

  8. Use at compile time to report coverage per cs file?

    ncrunch rocks! One of our goals is to set up the build system/CI system to have a list of units and required coverage level per unit. E.g. fileA.cs, 100 fileB.cs, 90 fileC.cs, 95 etc So as we get coverage addressed (using ncrunch), we can enforce a certain level of coverage at build ti…