Exemplo n.º 1
0
 def test_countif_strictly_superior(self):
     assert 3 == countif([7, 25, 13, 25], '>10')
Exemplo n.º 2
0
 def test_countif_with_string_equality(self):
     self.assertEqual(countif([7, 'e', 13, 'e'], 'e'), 2)
Exemplo n.º 3
0
def test_countif(value, criteria, result):
    assert countif(value, criteria) == result
Exemplo n.º 4
0
 def test_countif_strictly_inferior(self):
     self.assertEqual(countif([7, 25, 13, 25], '<10'), 1)
Exemplo n.º 5
0
 def test_countif_inferior(self):
     self.assertEqual(countif([7, 10, 13, 25], '<=10'), 2)
Exemplo n.º 6
0
 def test_countif_with_string_inequality(self):
     assert 1 == countif([7, 'e', 13, 'f'], '>e')
Exemplo n.º 7
0
 def test_argument_validity(self):
     with self.assertRaises(TypeError):
         countif(['e', 1], '>=1')
Exemplo n.º 8
0
 def test_countif_superior(self):
     self.assertEqual(countif([7, 10, 13, 25], '>=10'), 3)
Exemplo n.º 9
0
 def test_countif_inferior(self):
     self.assertEqual(countif([7, 10, 13, 25], '<=10'), 2)
Exemplo n.º 10
0
 def test_countif_strictly_superior(self):
     self.assertEqual(countif([7, 25, 13, 25], '>10'), 3)
Exemplo n.º 11
0
 def test_countif_strictly_inferior(self):
     self.assertEqual(countif([7, 25, 13, 25], '<10'), 1)
Exemplo n.º 12
0
 def test_argument_validity(self):
     with self.assertRaises(TypeError):
         countif(['e', 1], '>=1')
Exemplo n.º 13
0
 def test_countif_regular(self):
     assert 2 == countif(((7, 25, 13, 25), ), 25)
Exemplo n.º 14
0
 def test_countif_different(self):
     assert 3 == countif(((7, 10, 13, 25), ), '<>10')
Exemplo n.º 15
0
 def test_countif_superior(self):
     assert 3 == countif([7, 10, 13, 25], '>=10')
Exemplo n.º 16
0
 def test_countif_different(self):
     self.assertEqual(countif([7, 10, 13, 25], '<>10'), 3)
Exemplo n.º 17
0
 def test_countif_different(self):
     assert 3 == countif([7, 10, 13, 25], '<>10')
Exemplo n.º 18
0
 def test_countif_with_string_equality(self):
     self.assertEqual(countif([7, 'e', 13, 'e'], 'e'), 2)
Exemplo n.º 19
0
 def test_countif_inferior(self):
     assert 2 == countif(((7, 10, 13, 25), ), '<=10')
Exemplo n.º 20
0
 def test_countif_regular(self):
     self.assertEqual(countif([7, 25, 13, 25], 25), 2)
Exemplo n.º 21
0
 def test_countif_strictly_superior(self):
     self.assertEqual(countif([7, 25, 13, 25], '>10'), 3)
Exemplo n.º 22
0
 def test_countif_strictly_superior(self):
     assert 3 == countif(((7, 25, 13, 25), ), '>10')
Exemplo n.º 23
0
 def test_countif_superior(self):
     self.assertEqual(countif([7, 10, 13, 25], '>=10'), 3)
Exemplo n.º 24
0
 def test_countif_strictly_inferior(self):
     assert 1 == countif(((7, 25, 13, 25), ), '<10')
Exemplo n.º 25
0
 def test_countif_different(self):
     self.assertEqual(countif([7, 10, 13, 25], '<>10'), 3)
Exemplo n.º 26
0
 def test_countif_superior(self):
     assert 3 == countif(((7, 10, 13, 25), ), '>=10')
Exemplo n.º 27
0
 def test_countif_regular(self):
     self.assertEqual(countif([7, 25, 13, 25], 25), 2)
Exemplo n.º 28
0
 def test_countif_inferior(self):
     assert 2 == countif(((7, 10, 13, 25), ), '<=10')
Exemplo n.º 29
0
 def test_countif(result, criteria, values):
     assert countif(values, criteria) == result
Exemplo n.º 30
0
 def test_countif_different(self):
     assert 3 == countif(((7, 10, 13, 25), ), '<>10')
Exemplo n.º 31
0
 def test_countif_strictly_inferior(self):
     assert 1 == countif([7, 25, 13, 25], '<10')
Exemplo n.º 32
0
 def test_countif_with_string_equality(self):
     assert 2 == countif(((7, 'e', 13, 'e'), ), 'e')
Exemplo n.º 33
0
 def test_countif_inferior(self):
     assert 2 == countif([7, 10, 13, 25], '<=10')
Exemplo n.º 34
0
 def test_countif_with_string_inequality(self):
     assert 1 == countif(((7, 'e', 13, 'f'), ), '>e')
Exemplo n.º 35
0
 def test_countif_with_string_equality(self):
     assert 2 == countif([7, 'e', 13, 'e'], 'e')
Exemplo n.º 36
0
 def test_countif_regular(self):
     assert 2 == countif(((7, 25, 13, 25), ), 25)
Exemplo n.º 37
0
 def test_countif_regular(self):
     assert 2 == countif([7, 25, 13, 25], 25)
Exemplo n.º 38
0
 def test_countif_superior(self):
     assert 3 == countif(((7, 10, 13, 25), ), '>=10')