MudassarRasool / mb-unit

Automatically exported from code.google.com/p/mb-unit
0 stars 0 forks source link

Neither Setup nor Teardown are called when same method is decorated with both mbunit attributes #884

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?

    [TestFixture]
    public class Tester
    {
        [SetUp, TearDown]
        public static void StartCalc()
        {
            using (var p = new System.Diagnostics.Process { StartInfo = { FileName = "calc.exe" } }) p.Start();
        }

        [Test]
        public static void Dummy() {}
    }

What is the expected output? What do you see instead?

I expect 2 new calc processes when I run the Dummy test.
I get no new calc processes.

What version of the product are you using? On what operating system?

Gallio Icarus - Version 3.3 build 456
Windows 7 Enterprise N SP1 64 bit.

Please provide any additional information below.

Original issue reported on code.google.com by aaronmie...@gmail.com on 2 Apr 2012 at 5:26