Esempio n. 1
0
        public void IsJobClass_IfNormalPublicClass_ReturnsTrue()
        {
            Type type = typeof(PublicClass);

            // Act
            bool result = DefaultTypeLocator.IsJobClass(type);

            // Assert
            Assert.True(result);
        }
Esempio n. 2
0
        public void IsJobClass_IfNestedPublic_ReturnsFalse()
        {
            Type type = typeof(NestedPublicClass);

            // Act
            bool result = DefaultTypeLocator.IsJobClass(type);

            // Assert
            Assert.False(result);
        }
Esempio n. 3
0
        public void IsJobClass_IfContainsGenericParameters_ReturnsFalse()
        {
            Type type = typeof(GenericClass <>);

            // Act
            bool result = DefaultTypeLocator.IsJobClass(type);

            // Assert
            Assert.False(result);
        }
Esempio n. 4
0
        public void IsJobClass_IfPrivate_ReturnsFalse()
        {
            Type type = typeof(PrivateClass);

            // Act
            bool result = DefaultTypeLocator.IsJobClass(type);

            // Assert
            Assert.False(result);
        }
Esempio n. 5
0
        public void IsJobClass_IfAbstract_ReturnsFalse()
        {
            Type type = typeof(AbstractClass);

            // Act
            bool result = DefaultTypeLocator.IsJobClass(type);

            // Assert
            Assert.False(result);
        }
Esempio n. 6
0
        public void IsJobClass_IfInterface_ReturnsFalse()
        {
            Type type = typeof(PublicInterface);

            // Act
            bool result = DefaultTypeLocator.IsJobClass(type);

            // Assert
            Assert.False(result);
        }
Esempio n. 7
0
        public void IsJobClass_IfValueType_ReturnsFalse()
        {
            Type type = typeof(PublicStruct);

            // Act
            bool result = DefaultTypeLocator.IsJobClass(type);

            // Assert
            Assert.False(result);
        }
Esempio n. 8
0
        public void IsJobClass_IfNull_ReturnsFalse()
        {
            Type type = null;

            // Act
            bool result = DefaultTypeLocator.IsJobClass(type);

            // Assert
            Assert.False(result);
        }