Esempio n. 1
0
 def test_sum_range_with_less_indexes(self):
     self.assertEqual(sumif([1, 2, 3, 4, 5], ">=3", [100, 123, 12, 23]), 35)
Esempio n. 2
0
 def test_regular_with_number_criteria(self):
     self.assertEqual(sumif([1, 1, 2, 2, 2], 2), 6)
Esempio n. 3
0
 def test_sum_range(self):
     self.assertEqual(
         sumif([1, 2, 3, 4, 5], ">=3", [100, 123, 12, 23, 633]), 668)
Esempio n. 4
0
 def test_sumif(result, criteria, values):
     assert sumif(values, criteria) == result
     assert sumif(values, criteria, values) == result
Esempio n. 5
0
 def test_sum_range_is_a_list(self):
     with self.assertRaises(TypeError):
         sumif(12, 12, 12)
Esempio n. 6
0
 def test_regular_with_string_criteria(self):
     assert 12 == sumif(((1, 2, 3, 4, 5), ), ">=3")
Esempio n. 7
0
 def test_sum_range_with_less_indexes(self):
     with pytest.raises(AssertionError):
         sumif(((1, 2, 3, 4, 5), ), ">=3", ((100, 123, 12, 23), ))
Esempio n. 8
0
 def test_sum_range(self):
     self.assertEqual(sumif([1, 2, 3, 4, 5], ">=3", [100, 123, 12, 23, 633]), 668)
Esempio n. 9
0
 def test_sum_range_with_more_indexes(self):
     self.assertEqual(sumif([1, 2, 3, 4, 5], ">=3", [100, 123, 12, 23, 633, 1]), 668)
Esempio n. 10
0
 def test_regular_with_number_criteria(self):
     self.assertEqual(sumif([1, 1, 2, 2, 2], 2), 6)
Esempio n. 11
0
 def test_regular_with_string_criteria(self):
     self.assertEqual(sumif([1, 2, 3, 4, 5], ">=3"), 12)
Esempio n. 12
0
 def test_criteria_is_number_string_boolean(self):
     self.assertEqual(sumif([1, 2, 3], [1, 2]), 0)
Esempio n. 13
0
 def test_sum_range_is_a_list(self):
     with self.assertRaises(TypeError):
         sumif(12, 12, 12)
Esempio n. 14
0
 def test_sum_range_with_less_indexes(self):
     with pytest.raises(AssertionError):
         sumif(((1, 2, 3, 4, 5), ), ">=3", ((100, 123, 12, 23), ))
Esempio n. 15
0
 def test_sum_range(self):
     assert 668 == sumif(((1, 2, 3, 4, 5), ), ">=3",
                         ((100, 123, 12, 23, 633), ))
Esempio n. 16
0
 def test_sum_range_with_less_indexes(self):
     self.assertEqual(sumif([1, 2, 3, 4, 5], ">=3", [100, 123, 12, 23]), 35)
Esempio n. 17
0
 def test_regular_with_number_criteria(self):
     assert 6 == sumif(((1, 1, 2, 2, 2), ), 2)
Esempio n. 18
0
 def test_regular_with_number_criteria(self):
     assert 6 == sumif([1, 1, 2, 2, 2], 2)
Esempio n. 19
0
 def test_sum_range(self):
     assert 668 == sumif(((1, 2, 3, 4, 5), ), ">=3",
                         ((100, 123, 12, 23, 633), ))
Esempio n. 20
0
 def test_regular_with_string_criteria(self):
     assert 12 == sumif([1, 2, 3, 4, 5], ">=3")
Esempio n. 21
0
 def test_sum_range_not_list(self):
     with pytest.raises(TypeError):
         sumif([], [], 'JUNK')
Esempio n. 22
0
 def test_sum_range(self):
     assert 668 == sumif([1, 2, 3, 4, 5], ">=3", [100, 123, 12, 23, 633])
Esempio n. 23
0
def test_sumif(data, result):
    if isinstance(result, type(Exception)):
        with pytest.raises(result):
            sumif(*data)
    else:
        assert sumif(*data) == result
Esempio n. 24
0
 def test_sum_range_with_more_indexes(self):
     assert 668 == sumif([1, 2, 3, 4, 5], ">=3", [100, 123, 12, 23, 633, 1])
Esempio n. 25
0
 def test_criteria_is_number_string_boolean(self):
     self.assertEqual(sumif([1, 2, 3], [1, 2]), 0)
Esempio n. 26
0
 def test_sum_range_with_less_indexes(self):
     assert 35 == sumif([1, 2, 3, 4, 5], ">=3", [100, 123, 12, 23])
Esempio n. 27
0
 def test_regular_with_string_criteria(self):
     self.assertEqual(sumif([1, 2, 3, 4, 5], ">=3"), 12)
Esempio n. 28
0
 def test_sum_range_not_list(self):
     with pytest.raises(TypeError):
         sumif([], [], 'JUNK')
Esempio n. 29
0
 def test_sum_range_with_more_indexes(self):
     self.assertEqual(
         sumif([1, 2, 3, 4, 5], ">=3", [100, 123, 12, 23, 633, 1]), 668)
Esempio n. 30
0
 def test_sum_range_is_a_list(self):
     with pytest.raises(TypeError):
         sumif(12, 12, 12)
Esempio n. 31
0
 def test_sum_range_is_a_list(self):
     with pytest.raises(TypeError):
         sumif(12, 12, 12)
Esempio n. 32
0
 def test_sumif(expected, criteria, values):
     assert sumif(values, criteria) == expected
     assert sumif(values, criteria, values) == expected