示例#1
0
        public void DecimalDivideTest(double firstArgument, double secondArgument, Int32 result)
        {
            var calculator = new DecimalDivide();
            var testResult = calculator.Calculate(firstArgument, secondArgument);

            Assert.AreEqual(result, testResult);
        }
示例#2
0
    public static int Main()
    {
        DecimalDivide test = new DecimalDivide();

        TestLibrary.TestFramework.BeginTestCase("DecimalDivide");

        if (test.RunTests())
        {
            TestLibrary.TestFramework.EndTestCase();
            TestLibrary.TestFramework.LogInformation("PASS");
            return(100);
        }
        else
        {
            TestLibrary.TestFramework.EndTestCase();
            TestLibrary.TestFramework.LogInformation("FAIL");
            return(0);
        }
    }
示例#3
0
    public static int Main()
    {
        DecimalDivide test = new DecimalDivide();

        TestLibrary.TestFramework.BeginTestCase("DecimalDivide");

        if (test.RunTests())
        {
            TestLibrary.TestFramework.EndTestCase();
            TestLibrary.TestFramework.LogInformation("PASS");
            return 100;
        }
        else
        {
            TestLibrary.TestFramework.EndTestCase();
            TestLibrary.TestFramework.LogInformation("FAIL");
            return 0;
        }
    }