//----< test stub >---------------------------------------- static void Main(string[] args) { TestConfigure tc = new TestConfigure(); if (tc.test()) { Console.Write("\n configure tests passed"); } else { Console.Write("\n configure tests failed"); } Console.Write("\n\n"); }
//----< test stub >---------------------------------------- static void Main(string[] args) { Console.Write("\n Demonstrate TestConfigure - test example"); Console.Write("\n ==========================================\n"); TestConfigure tc = new TestConfigure(); if (tc.test()) { Console.Write("\n configure tests passed"); } else { Console.Write("\n configure tests failed"); } Console.Write("\n\n"); }