예제 #1
0
    public static int Main()
    {
        StringRemove1 sr = new StringRemove1();

        TestLibrary.TestFramework.BeginTestCase("for method: System.String.Remove(Int32)");
        if (sr.RunTests())
        {
            TestLibrary.TestFramework.EndTestCase();
            TestLibrary.TestFramework.LogInformation("PASS");
            return(100);
        }
        else
        {
            TestLibrary.TestFramework.EndTestCase();
            TestLibrary.TestFramework.LogInformation("FAIL");
            return(0);
        }
    }
예제 #2
0
 public static int Main()
 {
     StringRemove1 sr = new StringRemove1();
     
     TestLibrary.TestFramework.BeginTestCase("for method: System.String.Remove(Int32)");
     if(sr.RunTests())
     {
         TestLibrary.TestFramework.EndTestCase();
         TestLibrary.TestFramework.LogInformation("PASS");
         return 100;
     }
     else
     {
         TestLibrary.TestFramework.EndTestCase();
         TestLibrary.TestFramework.LogInformation("FAIL");
         return 0;
     }
 }