Forum member

nguyette

8 posts

Posts by nguyette

  1. Debugging With NCrunch Doesn't let me see values of vars

    No, it is not for all variables. I hovered over an int[] and I was able to see the values inside, but not for a List<string>. Just to test this issue, I assigned an int named "A" the value of 4. I could not see the value of A by hovering over it. The way I got to this point is by right clicking on …

  2. Debugging With NCrunch Doesn't let me see values of vars

    Using MSTest and NCrunch for debugging, I cannot hover over variables to see their values. Is this a bug?

  3. Endless Churn while logged out?

    I didn't know applications still ran in the background while locked. This should work!

  4. Endless Churn while logged out?

    With the distributed processing that available, NCrunch can copy over the source code to a remote machine, run the tests, and report the results. Why wouldn't it be possible to the last copy of the tests via a NCrunch service on the local machine after VS has closed, and run the tests in churn mode …

  5. Endless Churn while logged out?

    Yes, we must be logged out of our computers when we leave the desk. Churning like this would be useful to run exploratory testing or integration tests overnight.

  6. Endless Churn while logged out?

    I assume there's a way to run Endless Churn while logged out of my computer. How do you do this?

  7. How does NCrunch run tests?

    If I'm using the MSTest framework with a TestInitialize and a TestCleanup attribute, does NCrunch run these three methods in a separate process?

  8. Building Sql Server Database for each test

    In order to let tests that depend on a database run concurrently, is it a good idea to programmatically build the database on test start and tear it down on test end?