Esempio n. 1
0
        public bool IsPositiveTest06(sbyte value)
        {
            bool result = SignedIntegralNumberTestingUtility.IsPositive(value);

            return(result);
            // TODO: add assertions to method SignedIntegralNumberTestingUtilityTests.IsPositiveTest06(SByte)
        }
Esempio n. 2
0
        public bool IsPositiveTest09(short?value)
        {
            bool result = SignedIntegralNumberTestingUtility.IsPositive(value);

            return(result);
            // TODO: add assertions to method SignedIntegralNumberTestingUtilityTests.IsPositiveTest09(Nullable`1<Int16>)
        }
Esempio n. 3
0
        public bool IsPositiveTest(decimal value)
        {
            bool result = SignedIntegralNumberTestingUtility.IsPositive(value);

            return(result);
            // TODO: add assertions to method SignedIntegralNumberTestingUtilityTests.IsPositiveTest(Decimal)
        }
Esempio n. 4
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));
 }
Esempio n. 5
0
 public static Boolean IsPositive(this SByte value)
 {
     return(SignedIntegralNumberTestingUtility.IsPositive(value));
 }