Beispiel #1
0
        public void AcceptValidIdentifierAndLocation()
        {
            var sut = new ClassPropertiesValidator();

            Assert.True(sut.CheckValidityOfClassIdentifier("0005", "building b"));
        }
Beispiel #2
0
        public void AcceptValidIdentifierAndLocation2(string Id, string Location)
        {
            var sut = new ClassPropertiesValidator();

            Assert.False(sut.CheckValidityOfClassIdentifier(Id, Location));
        }