コード例 #1
0
 def test_map(self):
     self.assertDictEqual(
         sources.map().to_dictionary(lambda k: k, lambda k: k % 4), {
             0: 0,
             4: 0,
             8: 0
         })
コード例 #2
0
ファイル: test_max.py プロジェクト: Degubi/Py-Seq
 def test_map(self):
     self.assertEqual(sources.map().max(), 8)
コード例 #3
0
 def test_map(self):
     self.assertEqual(sources.map().first(), 0)
コード例 #4
0
ファイル: test_any_matches.py プロジェクト: Degubi/Py-Seq
 def test_map(self):
     self.assertTrue(sources.map().any_matches(lambda k: k % 4 == 0))
コード例 #5
0
ファイル: test_average.py プロジェクト: Degubi/Py-Seq
 def test_map(self):
     self.assertEqual(sources.map().average(), 4)
コード例 #6
0
ファイル: test_statistics.py プロジェクト: Degubi/Py-Seq
 def test_map(self):
     self.assertTupleEqual(sources.map().statistics(), NumberStatistics(12, 3, 0, 8, 4))
コード例 #7
0
ファイル: test_to_list.py プロジェクト: Degubi/Py-Seq
 def test_map(self):
     self.assertListEqual(sources.map().to_list(), [0, 4, 8])
コード例 #8
0
ファイル: test_join.py プロジェクト: Degubi/Py-Seq
 def test_map(self):
     self.assertEqual(sources.map().join('x'), '0x4x8')
コード例 #9
0
ファイル: test_sum.py プロジェクト: Degubi/Py-Seq
 def test_map(self):
     self.assertEqual(sources.map().sum(), 12)
コード例 #10
0
ファイル: test_for_each.py プロジェクト: Degubi/Py-Seq
 def test_map(self):
     self.assertListEqual(forEachOpHelper(sources.map()), [0, 4, 8])
コード例 #11
0
 def test_map(self):
     self.assertEqual(sources.map().count(), 3)