All,
Can I run a ProcessTestFixture and a TestFixture in the same assembly?

This seems not to be the case. Heres a contrived example

using System;
using System.Collections.Generic;
using System.Text;
using MbUnit.Framework;

namespace mbUnitProcessFixtureAndTestFixture
{
    [ProcessTestFixture]
    public class Process
    {
        [TestSequence(1)]
        public void T1()
        {
            Assert.IsTrue(true);
        }

        [TestSequence(2)]
        public void T2()
        {
            Assert.IsTrue(true);
        }

        [TestSequence(3)]
        public void T3()
        {
            Assert.IsTrue(true);
        }
    }

    [TestFixture]
    public class Normal
    {
        [Test]
        public void T1()
        {
            Assert.IsTrue(true);
        }
    }
}

If you compile this and run it, (So far I run it via TestDriven.net's
RunTests and nCover) I only get results for the processTest. If I
comment out the Process class, then the Normal test runs.

Regards,
Al

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"MbUnit.User" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/MbUnitUser?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to