Example #1
0
        public void ExtractReturnsNull(object value)
        {
            var ic = new NullIdentityChecker();

            Assert.IsNull(ic.ExtractId(value));
        }
Example #2
0
        public void IdNotSupported(Type type)
        {
            var ic = new NullIdentityChecker();

            Assert.IsFalse(ic.SupportsId(type));
        }