示例#1
0
 def test_equals_negative(self):
     testSubject = SimpleSubjectClass()
     verifiers.Verifiers.verify_equals(testSubject.do_reverse("The quick brown fox jumps over the lazy dog"),
                                       "The quick brown fox jumps over the lazy dog")
示例#2
0
 def test_equals_negative(self):
     testSubject = SimpleSubjectClass()
     verifiers.Verifiers.verify_equals(
         testSubject.do_reverse(
             "The quick brown fox jumps over the lazy dog"),
         "The quick brown fox jumps over the lazy dog")
示例#3
0
 def test_string_types(self):
     testSUbject = SimpleSubjectClass()
     verifiers.Verifiers.verify_type(testSUbject.do_reverse("The quick brown fox jumps over the lazy dog"), str,
                                     "Types do not match")
示例#4
0
 def test_string_types(self):
     testSUbject = SimpleSubjectClass()
     verifiers.Verifiers.verify_type(
         testSUbject.do_reverse(
             "The quick brown fox jumps over the lazy dog"), str,
         "Types do not match")