コード例 #1
0
ファイル: test_simulation.py プロジェクト: chchen123/pytpc
 def test_equal(self):
     self.assertEqual(sim.threshold(10., 10.), 10.)
コード例 #2
0
ファイル: test_simulation.py プロジェクト: chchen123/pytpc
 def test_below(self):
     self.assertEqual(sim.threshold(10., 20.), 20.)
コード例 #3
0
ファイル: test_simulation.py プロジェクト: chchen123/pytpc
 def test_above(self):
     self.assertEqual(sim.threshold(40., 20.), 40.)
コード例 #4
0
ファイル: test_simulation.py プロジェクト: tarvos14/pytpc
 def test_equal(self):
     self.assertEqual(sim.threshold(10., 10.), 10.)
コード例 #5
0
ファイル: test_simulation.py プロジェクト: tarvos14/pytpc
 def test_below(self):
     self.assertEqual(sim.threshold(10., 20.), 20.)
コード例 #6
0
ファイル: test_simulation.py プロジェクト: tarvos14/pytpc
 def test_above(self):
     self.assertEqual(sim.threshold(40., 20.), 40.)