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

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

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

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

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