public TestCaseElement (TestCase test) : base (test)
		{
			if (test.RunState == RunState.Runnable)
				Indicator = "..."; // hint there's more
		}
Exemple #2
0
		TestCaseElement Setup (TestCase test)
		{
			TestCaseElement tce = new TestCaseElement (test, this);
			case_elements.Add (test, tce);
			return tce;
		}