@Override @Before public void setUp() { Account account = new AliyunAccount(ACCESS_ID, ACCESS_KEY); odps = new Odps(account); odps.setDefaultProject(PROJECT); odps.setEndpoint(ENDPOINT); super.setUp(); }
@Before public void setUp() { // start the server super.setUp(); if (useHsqldbTestServer()) { // throw away any existing data that might be in the database. try { this.getTestServer().dropExistingSchema(); } catch (SQLException sqlE) { fail(sqlE.toString()); } } }