Example #1
0
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)
Example #2
0
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);
Example #3
0
 def setUp(self):
     self.product = Porduct()
     self.customer = Customer()
Example #4
0
 def setUp(self):
     self.product = Porduct();
     self.customer = Customer();