I had a good time with Nunit 2.6 + ReSharper 7, but after installing Ncrunch, my Visual Studio 2010 just fell apart and I can't run Unit tests inside Unit Test sessions.
Error message:
The project xxxx has not been built
Typical setting:
Project XXXX - No Basic
Project XXXX.Test - code
Some code in XXXX.Test
[TestFixture]
public class Entry
{
[Test]
public static void ThisWillPass()
{
Assert.AreEqual(1,2);
}
}
Note. I installed Configuration Manager on "build" on xxxx.test
Please inform.
source
share