Пример #1
0
        public bool IsTypeOfTest <T>(T value, Type typeComparison)
        {
            bool result = TypeTestingExtension.IsTypeOf <T>(value, typeComparison);

            return(result);
            // TODO: add assertions to method TypeTestingExtensionTests.IsTypeOfTest(!!0, Type)
        }
Пример #2
0
        public bool IsValueTypeOfTest <T>(T value)
        {
            bool result = TypeTestingExtension.IsValueTypeOf <T>(value);

            return(result);
            // TODO: add assertions to method TypeTestingExtensionTests.IsValueTypeOfTest(!!0)
        }
Пример #3
0
        public bool IsNotBoxedTypeOfTest <T>(object valueBoxed)
        {
            bool result = TypeTestingExtension.IsNotBoxedTypeOf <T>(valueBoxed);

            return(result);
            // TODO: add assertions to method TypeTestingExtensionTests.IsNotBoxedTypeOfTest(Object)
        }