Exemplo n.º 1
0
    def test_validate_problem_id_raises_wrong_type(self):
        with self.assertRaises(TypeError) as context:
            ProblemLogCreator.validate_problem_id(problem_id='1')  # noqa

        self.assertEqual(str(context.exception),
                         "problem_id should be of type 'int'!")
Exemplo n.º 2
0
 def test_validate_problem_id(self):
     self.assertEqual(1,
                      ProblemLogCreator.validate_problem_id(problem_id=1))