Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NUnit SetUpFixture attribute equivalent in xUnit?

In nUnit, SetUpFixture allowed me to run some code before any tests. Is there anything like that when using xUnit?


From nUnit documentation:

This is the attribute that marks a class that contains the one-time setup or teardown methods for all the test fixtures under a given namespace.

like image 425
Arnis Lapsa Avatar asked Jun 06 '10 22:06

Arnis Lapsa


1 Answers

xUnit's comparison table shows that where you would use [TestFixtureSetUp] in NUnit, you make your test fixture class implement IUseFixture<T>.


If [TestFixtureSetUp] isn't the attribute you're looking for, then the header at the beginning of the compatibility table indicates that there is no equivalent:

Note: any testing framework attributes that are not in this list have no corresponding attribute in xUnit.net.

like image 152
Mark Rushakoff Avatar answered Sep 23 '22 02:09

Mark Rushakoff