public static void ConfigureAndRun() { //UseIoc(); var startup = new Startup(); startup.ConfigureIoc(); startup.ConfigureAppSettings(); startup.ConfigureLogging(); MainTester.Run(); }
protected void ActivateOOP() { MainTester tester = new MainTester(b, d); resultStr = ""; int points = 1000; for (int i = 0; i < 5; i++) { TestResult result = tester.Test(points); resultStr += result.ToString() + "\n"; points *= 10; } }