예제 #1
0
 def testHeaterWith15(self):
     ac = AirConditionar(15)
     ac.set_heater()
     self.assert_(ac.is_light_lamp())
예제 #2
0
 def testCoolerWith35(self):
     ac = AirConditionar(35)
     self.assert_(ac.is_light_lamp())
예제 #3
0
 def testHeaterWith21(self):
     ac = AirConditionar(21)
     ac.set_heater()
     self.assert_(not ac.is_light_lamp())
예제 #4
0
 def testCoolerWith27(self):
     ac = AirConditionar(27)
     self.assert_(not ac.is_light_lamp())