class Test(unittest.TestCase): def setUp(self): self.customer = Customer(); def testName(self): self.customer.take();
class Test(unittest.TestCase): def setUp(self): self.product = Porduct() self.customer = Customer() def testName(self): self.product.create() msg = self.customer.take() print "take " + str(msg)
class Test(unittest.TestCase): def setUp(self): self.product = Porduct(); self.customer = Customer(); def testName(self): self.product.create(); msg = self.customer.take(); print "take " + str(msg);
def setUp(self): self.customer = Customer();
def setUp(self): self.product = Porduct() self.customer = Customer()
def setUp(self): self.product = Porduct(); self.customer = Customer();