示例#1
0
 def testToggleCoolerHeater(self):
     ac = AirConditionar(35)
     ac.set_heater()
     self.assert_(not ac.is_cooler())
     ac.set_cooler()
     self.assert_(ac.is_cooler())
示例#2
0
 def testSetCooler(self):
     ac = AirConditionar(35)
     ac.set_cooler()
     self.assert_(ac.is_cooler())