FixtureSetup on MbUnit / Gallio doesn't run - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T23:43:57Zhttp://stackoverflow.com/feeds/question/1041273http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1041273/fixturesetup-on-mbunit-gallio-doesnt-run1FixtureSetup on MbUnit / Gallio doesn't runaktersnurr2009-06-24T22:08:28Z2009-06-26T11:38:39Z
<p>I don't understand this problem. First I had MBUnit v2 referenced and everything worked perfectly. Then I installed and referenced MBunit v3... Which seems to be MbUnit.dll and Gallio.dll in the Gallio install bin-folder. And when I compiled I got some warnings on TestFixtureSetup, so I changed those to FixtureSetup. But now they don't get executed anymore. Any clues what I'm doing wrong?</p>
<p>Which dll's should I reference btw? Because when I used v2 of MbUnit I always used MbUnit.Framework.dll but that doesn't seem to be the case anymore.</p>
<p>I'am confused...</p>
<p><strong>Edit:</strong>
This example explains my problem best I think:</p>
<p>I tried this using TestDriven.NET:</p>
<pre><code>[TestFixture]
public class CategoryTests
{
[FixtureSetUp]
public void _TestFixtureSetup()
{
Debug.WriteLine("in fixturesetup");
}
[Test]
public void test()
{
Debug.WriteLine("in test");
Assert.IsTrue(true);
}
}
</code></pre>
<p>Upon rightclicking on the test method and choosing Run Test(s) I get this output:</p>
<pre><code>------ Test started: Assembly: mvcstore.DataAccess.Tests.dll ------
in test
1 passed, 0 failed, 0 skipped, took 1.13 seconds.
</code></pre>
http://stackoverflow.com/questions/1041273/fixturesetup-on-mbunit-gallio-doesnt-run/1041333#10413330Answer by Francis B. for FixtureSetup on MbUnit / Gallio doesn't runFrancis B.2009-06-24T22:26:43Z2009-06-24T22:26:43Z<p>You need only the 2 following assemblies: MbUnit.dll and Gallio.dll. Be sure to use the new runner because the old one (mbunit v2) is not compatible with mbUnit v3.</p>
<p>Icarus is the GUI runner and Echo is the command line runner.</p>