Hello,
I would like to run my test fixtures from inside my application, but
all of the examples of running tests that I can find do so through an
external application.
For example, say I have the fixture:
public class ExampleFixture
{
[Test]
public void SimpleTest()
{
Assert.AreEqual(2, 1 + 1);
}
}
I would like to have code like:
var results = TestRunner.Execute(typeof(ExampleFixture));
And then be able to inspect the results of the test through the
results object.
What should the snipped above be?
Thanks,
Douglas
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---