Пример #1
0
        public bool IsNegativeTest08(short value)
        {
            bool result = SignedIntegralNumberTestingUtility.IsNegative(value);

            return(result);
            // TODO: add assertions to method SignedIntegralNumberTestingUtilityTests.IsNegativeTest08(Int16)
        }
Пример #2
0
        public bool IsNegativeTest07(sbyte?value)
        {
            bool result = SignedIntegralNumberTestingUtility.IsNegative(value);

            return(result);
            // TODO: add assertions to method SignedIntegralNumberTestingUtilityTests.IsNegativeTest07(Nullable`1<SByte>)
        }
Пример #3
0
        public bool IsPositiveTest09(short?value)
        {
            bool result = SignedIntegralNumberTestingUtility.IsPositive(value);

            return(result);
            // TODO: add assertions to method SignedIntegralNumberTestingUtilityTests.IsPositiveTest09(Nullable`1<Int16>)
        }
Пример #4
0
        public bool IsNegativeTest(decimal value)
        {
            bool result = SignedIntegralNumberTestingUtility.IsNegative(value);

            return(result);
            // TODO: add assertions to method SignedIntegralNumberTestingUtilityTests.IsNegativeTest(Decimal)
        }
Пример #5
0
        public bool IsPositiveTest06(sbyte value)
        {
            bool result = SignedIntegralNumberTestingUtility.IsPositive(value);

            return(result);
            // TODO: add assertions to method SignedIntegralNumberTestingUtilityTests.IsPositiveTest06(SByte)
        }
Пример #6
0
 /// <summary>
 ///		Determines whether the provided <see cref="T:System.Nullable`1"/> of <see cref="T:System.Int16"/> value is positive.
 /// </summary>
 /// <param name="value">The <see cref="T:System.Int16"/> value to test.</param>
 /// <returns>
 ///		<see langword="true"/> if the <see cref="T:System.Int16"/> value is positive; otherwise, <see langword="false"/>.
 /// </returns>
 public static Boolean IsPositive([CanBeNull] this Int16?value)
 {
     return(SignedIntegralNumberTestingUtility.IsPositive(value));
 }
Пример #7
0
 public static Boolean IsPositive(this SByte value)
 {
     return(SignedIntegralNumberTestingUtility.IsPositive(value));
 }
Пример #8
0
 /// <summary>
 ///		Determines whether the provided <see cref="T:System.Int16"/> value is negative.
 /// </summary>
 /// <param name="value">The <see cref="T:System.Int16"/> value to test.</param>
 /// <returns>
 ///		<see langword="true"/> if the <see cref="T:System.Int16"/> value is negative; otherwise, <see langword="false"/>.
 /// </returns>
 public static Boolean IsNegative(this Int16 value)
 {
     return(SignedIntegralNumberTestingUtility.IsNegative(value));
 }
Пример #9
0
 public static Boolean IsNegative([CanBeNull] this SByte?value)
 {
     return(SignedIntegralNumberTestingUtility.IsNegative(value));
 }