المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : NUnit execution from a share?



C# Programming
11-11-2009, 12:00 PM
Hi all. Does anyone have any experience deploying a .nunit file to a network share?

I'm trying to share everything involved with running a particular test suite such that anyone on the team can simply access the share, open my nunit file in their NUnit-gui and run to see my status. The test suite that is to be shared is not dependent upon executing any custom code. Every one of the tests is structured similarly to this:


[TestFixture()]
public class CoverageTests
{
[Test()]
public void ReportStatusOfTask1()
{
Assert.IsTrue(false, "Task 1 has not begun yet");
}
[Test()]
public void ReportStatusOfTask2()
{
Assert.IsTrue(true, "Task 2 is ready for review");
}
}


"I need build Skynet. Plz send code"