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