Beispiel #1
0
        public bool IsNegativeTest07(sbyte?value)
        {
            bool result = SignedIntegralNumberTestingUtility.IsNegative(value);

            return(result);
            // TODO: add assertions to method SignedIntegralNumberTestingUtilityTests.IsNegativeTest07(Nullable`1<SByte>)
        }
Beispiel #2
0
        public bool IsNegativeTest08(short value)
        {
            bool result = SignedIntegralNumberTestingUtility.IsNegative(value);

            return(result);
            // TODO: add assertions to method SignedIntegralNumberTestingUtilityTests.IsNegativeTest08(Int16)
        }
Beispiel #3
0
        public bool IsNegativeTest(decimal value)
        {
            bool result = SignedIntegralNumberTestingUtility.IsNegative(value);

            return(result);
            // TODO: add assertions to method SignedIntegralNumberTestingUtilityTests.IsNegativeTest(Decimal)
        }
Beispiel #4
0
 /// <summary>
 ///		Determines whether the provided <see cref="T:System.Nullable`1"/> of <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([CanBeNull] this Int16?value)
 {
     return(SignedIntegralNumberTestingUtility.IsNegative(value));
 }
Beispiel #5
0
 public static Boolean IsNegative(this SByte value)
 {
     return(SignedIntegralNumberTestingUtility.IsNegative(value));
 }