Esempio n. 1
0
        // List the tests to a TestResult object, but don't run them.
        // Implements the "Test" interface.
        public void List(TestResult result)
        {
            int posn;

            result.ListTest(this, true);
            for (posn = 0; posn < tests.Length; ++posn)
            {
                ((Test)(tests[posn])).List(result);
            }
        }
Esempio n. 2
0
	// List the tests to a TestResult object, but don't run them.
	// Implements the "Test" interface.
	public void List(TestResult result)
			{
				result.ListTest(this, false);
			}
Esempio n. 3
0
 // List the tests to a TestResult object, but don't run them.
 // Implements the "Test" interface.
 public void List(TestResult result)
 {
     result.ListTest(this, false);
 }
Esempio n. 4
0
	// List the tests to a TestResult object, but don't run them.
	// Implements the "Test" interface.
	public void List(TestResult result)
			{
				int posn;
				result.ListTest(this, true);
				for(posn = 0; posn < tests.Length; ++posn)
				{
					((Test)(tests[posn])).List(result);
				}
			}