Ejemplo n.º 1
0
 public void IsValid_IsNull_ReturnsFalse()
 {
     Assert.False(ClassAbbreviationChecker.IsValid(null));
 }
Ejemplo n.º 2
0
        public void IsValid_SomethingWeird_ReturnsFalse()
        {
            String abbreviation = new String("Comp*170");

            Assert.False(ClassAbbreviationChecker.IsValid(abbreviation));
        }
Ejemplo n.º 3
0
        public void IsValid_IsEmpty_ReturnsFalse()
        {
            String abbreviation = new String("");

            Assert.False(ClassAbbreviationChecker.IsValid(abbreviation));
        }
Ejemplo n.º 4
0
        public void IsValid_NothingWeird_ReturnsTrue()
        {
            String abbreviation = new String("Comp170");

            Assert.True(ClassAbbreviationChecker.IsValid(abbreviation));
        }