Exemplo n.º 1
0
        public void WhenNotUsedInDictionaryValueShouldNotMatch()
        {
            var pattern = new CustomUserTypeInCollectionElementApplier(typeof(MyType), typeof(MyTypeUserType));

            pattern.Match(ConfOrm.ForClass <MyClass> .Property(x => x.DictionaryString)).Should().Be.False();
        }
Exemplo n.º 2
0
        public void WhenUsedInCollectionShouldMatch()
        {
            var pattern = new CustomUserTypeInCollectionElementApplier(typeof(MyType), typeof(MyTypeUserType));

            pattern.Match(ConfOrm.ForClass <MyClass> .Property(x => x.Enumerable)).Should().Be.True();
        }
Exemplo n.º 3
0
        public void WhenUsedInDictionaryValueShouldMatch()
        {
            var pattern = new CustomUserTypeInCollectionElementApplier(typeof(MyType), typeof(MyTypeUserType));

            pattern.Match(ForClass <MyClass> .Property(x => x.Dictionary)).Should().Be.True();
        }
Exemplo n.º 4
0
        public void WhenNotUsedInCollectionShouldNotMatch()
        {
            var pattern = new CustomUserTypeInCollectionElementApplier(typeof(MyType), typeof(MyTypeUserType));

            pattern.Match(ForClass <MyClass> .Property(x => x.EnumerableString)).Should().Be.False();
        }
 public void WhenUsedInDictionaryValueShouldMatch()
 {
     var pattern = new CustomUserTypeInCollectionElementApplier(typeof(MyType), typeof(MyTypeUserType));
     pattern.Match(ForClass<MyClass>.Property(x => x.Dictionary)).Should().Be.True();
 }
 public void WhenNotUsedInCollectionShouldNotMatch()
 {
     var pattern = new CustomUserTypeInCollectionElementApplier(typeof(MyType), typeof(MyTypeUserType));
     pattern.Match(ForClass<MyClass>.Property(x => x.EnumerableString)).Should().Be.False();
 }