public void ReturnsFalseFieldNotExist(string fields) { var sut = new TypeHelperService(); Assert.False(sut.TypeHasProperties <DummyEntity>(fields)); }
public void ReturnsTrueNullOrCorrectFields(string fields) { var sut = new TypeHelperService(); Assert.True(sut.TypeHasProperties <DummyEntity>(fields)); }
public TypeHelperServiceShould() { _typeHelperService = new TypeHelperService(); }