コード例 #1
0
ファイル: runtests.py プロジェクト: giantneco/tdd-with-python
 def testHeaterWith21(self):
     ac = AirConditionar(21)
     ac.set_heater()
     self.assert_(not ac.is_light_lamp())
コード例 #2
0
ファイル: runtests.py プロジェクト: giantneco/tdd-with-python
 def testHeaterWith15(self):
     ac = AirConditionar(15)
     ac.set_heater()
     self.assert_(ac.is_light_lamp())
コード例 #3
0
ファイル: runtests.py プロジェクト: giantneco/tdd-with-python
 def testSetHeater(self):
     ac = AirConditionar(35)
     ac.set_heater()
     self.assert_(not ac.is_cooler())
コード例 #4
0
ファイル: runtests.py プロジェクト: giantneco/tdd-with-python
 def testToggleCoolerHeater(self):
     ac = AirConditionar(35)
     ac.set_heater()
     self.assert_(not ac.is_cooler())
     ac.set_cooler()
     self.assert_(ac.is_cooler())
コード例 #5
0
ファイル: runtests.py プロジェクト: giantneco/tdd-with-python
 def testSetCooler(self):
     ac = AirConditionar(35)
     ac.set_cooler()
     self.assert_(ac.is_cooler())
コード例 #6
0
ファイル: runtests.py プロジェクト: giantneco/tdd-with-python
 def testCoolerWith35(self):
     ac = AirConditionar(35)
     self.assert_(ac.is_light_lamp())
コード例 #7
0
ファイル: runtests.py プロジェクト: giantneco/tdd-with-python
 def testCoolerWith27(self):
     ac = AirConditionar(27)
     self.assert_(not ac.is_light_lamp())
コード例 #8
0
ファイル: runtests.py プロジェクト: giantneco/tdd-with-python
 def testIsCooler(self):
     ac = AirConditionar(15)
     self.assert_(ac.is_cooler())
コード例 #9
0
ファイル: runtests.py プロジェクト: giantneco/tdd-with-python
 def testSetThermo(self):
     ac = AirConditionar(15)
     ac.set_thermo(28)
     self.assertEqual(28, ac.thermo)