Forum member

ronjacobs

4 posts

Posts by ronjacobs

  1. Which Configuration doe NCrunch use for tests?

    I've got a project that has several configurations (debug and release). These configurations #define symbols that alter the behavior of the system. Ideally, I'd like NCrunch to test each of the configurations (but that is probably not possible). I assume that it is using the Debug configurati…

  2. DeploymentItem with Environment Variable not working

    Here is my workaround #if NCRUNCH /// <summary> /// The Lab directory /// </summary> /// <remarks> /// NCrunch does not expand environment variables /// </remarks> internal const string Labdir = @"D:\wf.codeplex.com\src\wf\labs"; #else /// <summary> …

  3. DeploymentItem with Environment Variable not working

    As a quick test I replaced the environment variable with the actual path and the test is now passing. Please make the DeploymentItem expand the environment variable

  4. DeploymentItem with Environment Variable not working

    I've just tried using NCrunch for the first time. My project currently builds and passes all unit tests from Visual Studio. However, when NCrunch runs the tests I get many test failures due to deployment items not being deployed. It appears that MSTest DeploymentItem is supported. However I …