Ejemplo n.º 1
0
 def test_addition(self):
     self.assertEqual(answer("What is 1 plus 1?"), 2)
Ejemplo n.º 2
0
 def test_missing_operation(self):
     with self.assertRaisesWithMessage(ValueError):
         answer("What is 2 2 minus 3?")
Ejemplo n.º 3
0
 def test_multiple_division(self):
     self.assertEqual(answer("What is -12 divided by 2 divided by -3?"), 2)
Ejemplo n.º 4
0
 def test_unknown_operation(self):
     with self.assertRaisesWithMessage(ValueError):
         answer("What is 52 cubed?")
Ejemplo n.º 5
0
 def test_reject_two_operations_in_a_row(self):
     with self.assertRaisesWithMessage(ValueError):
         answer('What is 1 plus plus 2?')
Ejemplo n.º 6
0
 def test_division(self):
     self.assertEqual(answer("What is 33 divided by -3?"), -11)
Ejemplo n.º 7
0
 def test_subtraction_then_addition(self):
     self.assertEqual(answer("What is 17 minus 6 plus 3?"), 14)
Ejemplo n.º 8
0
 def test_reject_problem_missing_an_operand(self):
     with self.assertRaisesWithMessage(ValueError):
         answer('What is 1 plus?')
Ejemplo n.º 9
0
 def test_reject_problem_with_no_operands_or_operators(self):
     with self.assertRaisesWithMessage(ValueError):
         answer('What is?')
Ejemplo n.º 10
0
 def test_reject_postfix_notation(self):
     with self.assertRaisesWithMessage(ValueError):
         answer("What is 1 2 plus?")
Ejemplo n.º 11
0
 def test_non_math_question(self):
     with self.assertRaisesWithMessage(ValueError):
         answer("Who is the President of the United States?")
Ejemplo n.º 12
0
 def test_reject_prefix_notation(self):
     with self.assertRaises(ValueError) as err:
         answer("What is plus 1 2?")
     self.assertEqual(type(err.exception), ValueError)
     self.assertEqual(err.exception.args[0], "syntax error")
Ejemplo n.º 13
0
 def test_reject_two_numbers_in_a_row(self):
     with self.assertRaises(ValueError) as err:
         answer("What is 1 plus 2 1?")
     self.assertEqual(type(err.exception), ValueError)
     self.assertEqual(err.exception.args[0], "syntax error")
Ejemplo n.º 14
0
 def test_reject_problem_with_no_operands_or_operators(self):
     with self.assertRaises(ValueError) as err:
         answer("What is?")
     self.assertEqual(type(err.exception), ValueError)
     self.assertEqual(err.exception.args[0], "syntax error")
Ejemplo n.º 15
0
 def test_addition_with_negative_numbers(self):
     self.assertEqual(answer("What is -1 plus -10?"), -11)
Ejemplo n.º 16
0
 def test_reject_two_operations_in_a_row(self):
     with self.assertRaisesWithMessage(ValueError):
         answer('What is 1 plus plus 2?')
Ejemplo n.º 17
0
 def test_subtraction(self):
     self.assertEqual(answer("What is 4 minus -12?"), 16)
Ejemplo n.º 18
0
 def test_reject_two_numbers_in_a_row(self):
     with self.assertRaisesWithMessage(ValueError):
         answer('What is 1 plus 2 1?')
Ejemplo n.º 19
0
 def test_addition_and_subtraction(self):
     self.assertEqual(answer("What is 1 plus 5 minus -2?"), 8)
Ejemplo n.º 20
0
 def test_just_a_number(self):
     self.assertEqual(answer('What is 5?'), 5)
Ejemplo n.º 21
0
 def test_addition_and_multiplication(self):
     self.assertEqual(answer("What is -3 plus 7 multiplied by -2?"), -8)
Ejemplo n.º 22
0
 def test_reject_prefix_notation(self):
     with self.assertRaisesWithMessage(ValueError):
         answer('What is plus 1 2?')
Ejemplo n.º 23
0
 def test_reject_problem_missing_an_operand(self):
     with self.assertRaisesWithMessage(ValueError):
         answer('What is 1 plus?')
Ejemplo n.º 24
0
 def test_missing_operation(self):
     with self.assertRaisesWithMessage(ValueError):
         answer("What is 2 2 minus 3?")
Ejemplo n.º 25
0
 def test_reject_prefix_notation(self):
     with self.assertRaisesWithMessage(ValueError):
         answer('What is plus 1 2?')
Ejemplo n.º 26
0
 def test_missing_number(self):
     with self.assertRaisesWithMessage(ValueError):
         answer("What is 7 plus multiplied by -2?")
Ejemplo n.º 27
0
 def test_reject_problem_missing_an_operand(self):
     with self.assertRaises(ValueError) as err:
         answer("What is 1 plus?")
     self.assertEqual(type(err.exception), ValueError)
     self.assertEqual(err.exception.args[0], "syntax error")
Ejemplo n.º 28
0
 def test_addition(self):
     self.assertEqual(answer("What is 1 plus 1?"), 2)
Ejemplo n.º 29
0
 def test_unknown_operation(self):
     with self.assertRaisesWithMessage(ValueError):
         answer("What is 52 cubed?")
Ejemplo n.º 30
0
 def test_more_addition(self):
     self.assertEqual(answer("What is 53 plus 2?"), 55)
Ejemplo n.º 31
0
 def test_more_addition(self):
     self.assertEqual(answer("What is 53 plus 2?"), 55)
Ejemplo n.º 32
0
 def test_addition_with_negative_numbers(self):
     self.assertEqual(answer("What is -1 plus -10?"), -11)
Ejemplo n.º 33
0
 def test_large_addition(self):
     self.assertEqual(answer("What is 123 plus 45678?"), 45801)
Ejemplo n.º 34
0
 def test_large_addition(self):
     self.assertEqual(answer("What is 123 plus 45678?"), 45801)
Ejemplo n.º 35
0
 def test_multiplication(self):
     self.assertEqual(answer("What is -3 multiplied by 25?"), -75)
Ejemplo n.º 36
0
 def test_subtraction(self):
     self.assertEqual(answer("What is 4 minus -12?"), 16)
Ejemplo n.º 37
0
 def test_multiple_additions(self):
     self.assertEqual(answer("What is 1 plus 1 plus 1?"), 3)
Ejemplo n.º 38
0
 def test_multiplication(self):
     self.assertEqual(answer("What is -3 multiplied by 25?"), -75)
Ejemplo n.º 39
0
 def test_multiple_subtraction(self):
     self.assertEqual(answer("What is 20 minus 4 minus 13?"), 3)
Ejemplo n.º 40
0
 def test_division(self):
     self.assertEqual(answer("What is 33 divided by -3?"), -11)
Ejemplo n.º 41
0
 def test_multiple_multiplication(self):
     self.assertEqual(
         answer("What is 2 multiplied by -2 multiplied by 3?"), -12)
Ejemplo n.º 42
0
 def test_multiple_additions(self):
     self.assertEqual(answer("What is 1 plus 1 plus 1?"), 3)
Ejemplo n.º 43
0
 def test_multiple_division(self):
     self.assertEqual(
         answer("What is -12 divided by 2 divided by -3?"), 2)
Ejemplo n.º 44
0
 def test_addition_and_subtraction(self):
     self.assertEqual(answer("What is 1 plus 5 minus -2?"), 8)
Ejemplo n.º 45
0
 def test_non_math_question(self):
     with self.assertRaisesWithMessage(ValueError):
         answer("Who is the President of the United States?")
Ejemplo n.º 46
0
 def test_multiple_subtraction(self):
     self.assertEqual(answer("What is 20 minus 4 minus 13?"), 3)
Ejemplo n.º 47
0
 def test_reject_problem_with_no_operands_or_operators(self):
     with self.assertRaisesWithMessage(ValueError):
         answer('What is?')
Ejemplo n.º 48
0
 def test_subtraction_then_addition(self):
     self.assertEqual(answer("What is 17 minus 6 plus 3?"), 14)
Ejemplo n.º 49
0
 def test_reject_two_numbers_in_a_row(self):
     with self.assertRaisesWithMessage(ValueError):
         answer('What is 1 plus 2 1?')
Ejemplo n.º 50
0
 def test_multiple_multiplication(self):
     self.assertEqual(answer("What is 2 multiplied by -2 multiplied by 3?"), -12)
Ejemplo n.º 51
0
 def test_just_a_number(self):
     self.assertEqual(answer('What is 5?'), 5)
Ejemplo n.º 52
0
 def test_addition_and_multiplication(self):
     self.assertEqual(answer("What is -3 plus 7 multiplied by -2?"), -8)
Ejemplo n.º 53
0
 def test_missing_number(self):
     with self.assertRaisesWithMessage(ValueError):
         answer("What is 7 plus multiplied by -2?")
Ejemplo n.º 54
0
 def test_non_math_question(self):
     with self.assertRaises(ValueError) as err:
         answer("Who is the President of the United States?")
     self.assertEqual(type(err.exception), ValueError)
     self.assertEqual(err.exception.args[0], "unknown operation")