static void Main(string[] args)
        {
            AnotherTested antest = new AnotherTested();

            if (antest.myWackyFunction())
            {
                Console.Write("This is a test");
            }
            else
            {
                Console.Write("This is a test");
            }
        }
Exemple #2
0
 public bool test()
 {
     TestHarness.AnotherTested tested = new TestHarness.AnotherTested();
     return(tested.myWackyFunction());
 }
Exemple #3
0
 static void Main(string[] args)
 {
     AnotherTested at = new AnotherTested();
     at.performAnyTest();
 }
Exemple #4
0
 public bool test()  // test function deriving from ITest interface
 {
     Console.Write("\n REQ 5 - test driver derives from an ITest interface that declares a method test()");
     TestHarness.AnotherTested tested = new TestHarness.AnotherTested();
     return(tested.performAnyTest());  // calling the function to perform a test as defined by the user
 }