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");
            }
        }
Example #2
0
 public bool test()
 {
     TestHarness.AnotherTested tested = new TestHarness.AnotherTested();
     return(tested.myWackyFunction());
 }