This repository has been archived by the owner on Jun 12, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 46
Can I use xBehave.net with continuous test tools?
Adam Ralph edited this page Sep 29, 2013
·
5 revisions
NCrunch works fine with xBehave.net after jumping through one relatively painless hoop: you need at least one vanilla [Fact]
xUnit.net test method to be present in your test assembly, otherwise NCrunch fails to recognise your assembly as a test assembly. This can be a dummy, E.g.
[Fact]
public void HelloNCrunch()
{
}
}
YMMV. Adding a vanilla xUnit.test (see NCrunch) seemed to at least partially allow CT/MM/AT to recognise the assembly but it then seemed to get confused by the coverage indicated by the xBehave.net scenarios. There seem to be issues to address in CT/MM/AT before it is useable with xBehave.net. At the time of writing it is not recommended to use CT/MM/AT with xBehave.net.