public void RealNameLength()
 {
     UnitTestHelpers.testStringLength(typeof(User).GetProperty("realName"), 100);
 }
 public void ElectiveListShortNameMaxLength()
 {
     UnitTestHelpers.testStringLength(typeof(ElectiveList).GetProperty("shortName"), 20);
 }
 public void UsernameLength()
 {
     UnitTestHelpers.testStringLength(typeof(User).GetProperty("username"), 100);
     UnitTestHelpers.testStringLengthMin(typeof(User).GetProperty("username"), 3);
 }
示例#4
0
 public void CoursePrefixMaximumLength()
 {
     UnitTestHelpers.testStringLength(typeof(Course).GetProperty("coursePrefix"), 5);
 }