Example #1
0
        public void ReturnsFalseFieldNotExist(string fields)
        {
            var sut = new TypeHelperService();

            Assert.False(sut.TypeHasProperties <DummyEntity>(fields));
        }
Example #2
0
        public void ReturnsTrueNullOrCorrectFields(string fields)
        {
            var sut = new TypeHelperService();

            Assert.True(sut.TypeHasProperties <DummyEntity>(fields));
        }
 public TypeHelperServiceShould()
 {
     _typeHelperService = new TypeHelperService();
 }