Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            Tested antest = new Tested();

            if (antest.myWackyFunction())
            {
                Console.Write("This is a test");
            }
            else
            {
                Console.Write("This is a test");
            }
        }
Ejemplo n.º 2
0
 public bool test()
 {
     TestHarness.Tested tested = new TestHarness.Tested();
     return(tested.myWackyFunction());
 }