Esempio n. 1
0
        public bool IsOddTest03(float?value)
        {
            bool result = FloatingPointNumberParityTestingExtension.IsOdd(value);

            return(result);
            // TODO: add assertions to method FloatingPointNumberParityTestingExtensionTests.IsOddTest03(Nullable`1<Single>)
        }
Esempio n. 2
0
        public bool IsEvenTest02(float value)
        {
            bool result = FloatingPointNumberParityTestingExtension.IsEven(value);

            return(result);
            // TODO: add assertions to method FloatingPointNumberParityTestingExtensionTests.IsEvenTest02(Single)
        }
Esempio n. 3
0
        public bool IsOddTest(double value)
        {
            bool result = FloatingPointNumberParityTestingExtension.IsOdd(value);

            return(result);
            // TODO: add assertions to method FloatingPointNumberParityTestingExtensionTests.IsOddTest(Double)
        }
Esempio n. 4
0
        public bool IsEvenTest01(double?value)
        {
            bool result = FloatingPointNumberParityTestingExtension.IsEven(value);

            return(result);
            // TODO: add assertions to method FloatingPointNumberParityTestingExtensionTests.IsEvenTest01(Nullable`1<Double>)
        }