def setUp(self):
        GaiaTestCase.setUp(self)
        self.helpers = Helpers(self)
        self.contacts_num = self.testvars['performance']['contacts_num']
        self.RUNS = self.testvars['performance']['runs']

        self.contacts = [MockContact() for i in range(self.contacts_num)]
        map(self.data_layer.insert_contact, self.contacts)
Beispiel #2
0
 def setUp(self):
     GaiaTestCase.setUp(self)
     self.contacts_num = self.testvars['performance']['contacts_num']
     self.RUNS = self.testvars['performance']['runs']
     self.helpers = Helpers(self)