Example #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")
Example #2
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")
Example #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")
Example #4
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")
Example #5
0
 def test_verify_returns_str(self):
     verifiers.Verifiers.verify_returns("Foo",
                                        SimpleSubjectClass().do_reverse,
                                        "Foo")