def testVerbose(self): storage_api.InitializeConnection([ '-z', ZK_TEST_CONNECTION_STRING, '-t', 'InterUSSStorageAPITestCase', '-v' ])
def testVerbose(self): options = storage_api.ParseOptions( ['-z', ZK_TEST_CONNECTION_STRING, '-t', TESTID, '-v']) storage_api.InitializeConnection(options)
def setUp(self): storage_api.webapp.testing = True self.app = storage_api.webapp.test_client() storage_api.InitializeConnection([ '-z', ZK_TEST_CONNECTION_STRING, '-t', 'InterUSSStorageAPITestCase' ])
def setUp(self): storage_api.webapp.testing = True self.app = storage_api.webapp.test_client() options = storage_api.ParseOptions( ['-z', ZK_TEST_CONNECTION_STRING, '-t', TESTID]) storage_api.InitializeConnection(options)