Rank: Member
Groups: Registered
Joined: 10/18/2013(UTC) Posts: 27 Location: United States of America
Was thanked: 2 time(s) in 2 post(s)
|
Reproduction steps: - New Project > Class Library
- Go through NCrunch setup (next, parallel, next, next, Let my tests run, next, finish)
- Manage NuGet Packages...
- Include Prerelease
- Online > nuget.org
- Search Online > xunit
- Select xUnit.net > Install
- Add using Xunit;
- Add a public method annotated with [Fact].
- Add Assert.Equal(1, 2); in the method body.
NCrunch 2.7.0.5 xUnit.Net 2.0.0.2700 (2.0.0-beta-build2700) NCrunch doesn't see the test. Visual Studio 2013 Ultimate with xUnit test adapter does. I have tried telling NCrunch to resynchronize.
|