Exemplo n.º 1
0
 def test_distinct_with_numbers(self):
     self.assertDictEqual(
         sources.distinctNumbers().to_dictionary(lambda k: k, lambda k: k),
         {
             0: 0,
             2: 2,
             5: 5,
             10: 10
         })
Exemplo n.º 2
0
 def test_distinct_with_numbers(self):
     self.assertEqual(sources.distinctNumbers().max(), 10)
Exemplo n.º 3
0
 def test_distinct_with_numbers(self):
     self.assertEqual(sources.distinctNumbers().first(), 0)
Exemplo n.º 4
0
 def test_distinct_with_numbers(self):
     self.assertFalse(sources.distinctNumbers().any_matches(lambda k: k < 0))
Exemplo n.º 5
0
 def test_distinct_with_numbers(self):
     self.assertEqual(sources.distinctNumbers().average(), 4.25)
Exemplo n.º 6
0
 def test_distinct_with_numbers(self):
     self.assertTupleEqual(sources.distinctNumbers().statistics(), NumberStatistics(17, 4, 0, 10, 4.25))
Exemplo n.º 7
0
 def test_distinct_with_numbers(self):
     self.assertListEqual(sources.distinctNumbers().to_list(),
                          [0, 2, 5, 10])
Exemplo n.º 8
0
 def test_distinct_with_numbers(self):
     self.assertEqual(sources.distinctNumbers().join('x'), '0x2x5x10')
Exemplo n.º 9
0
 def test_distinct_with_numbers(self):
     self.assertListEqual(forEachOpHelper(sources.distinctNumbers()),
                          [0, 2, 5, 10])