public void TestTearDown()
 {
     Console.WriteLine("TestSetup teardown here");
     testObject = null;
 }
 public void TestSetup()
 {
     Console.WriteLine("TestSetup goes here");
     testObject = new DevOps.HelloWorld.HelperMethods();
 }