Ignored tests
This commit is contained in:
parent
cd39b70533
commit
642a98f76f
|
@ -24,23 +24,23 @@ public class DataBaseCreator extends ContextTest {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void createDatabase() throws Exception {
|
public void createDatabase() throws Exception {
|
||||||
ContextTest.setContextByName(ROOT_DEV);
|
ContextTest.setContextByName(GCUBE);
|
||||||
logger.debug("Going to create DB");
|
logger.debug("Going to create DB");
|
||||||
String db = DatabaseEnvironment.DB_URI;
|
String db = DatabaseEnvironment.DB_URI;
|
||||||
logger.debug("{} created", db);
|
logger.debug("{} created", db);
|
||||||
}
|
}
|
||||||
|
|
||||||
// @Ignore
|
@Ignore
|
||||||
@Test
|
// @Test
|
||||||
public void createAllContexts() throws Exception {
|
public void createAllContexts() throws Exception {
|
||||||
ContextTest.setContextByName(ROOT_DEV);
|
ContextTest.setContextByName(GCUBE);
|
||||||
ContextCreator contextCreator = new ContextCreator();
|
ContextCreator contextCreator = new ContextCreator();
|
||||||
contextCreator.all();
|
contextCreator.all();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void checkAllContexts() throws Exception {
|
public void checkAllContexts() throws Exception {
|
||||||
ContextTest.setContextByName(ROOT_DEV);
|
ContextTest.setContextByName(GCUBE);
|
||||||
ContextTester contextTester = new ContextTester();
|
ContextTester contextTester = new ContextTester();
|
||||||
contextTester.all();
|
contextTester.all();
|
||||||
}
|
}
|
||||||
|
@ -54,7 +54,8 @@ public class DataBaseCreator extends ContextTest {
|
||||||
return c;
|
return c;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Ignore
|
||||||
|
// @Test
|
||||||
public void createDevContexts() throws Exception {
|
public void createDevContexts() throws Exception {
|
||||||
Context gcube = new ContextImpl("gcube");
|
Context gcube = new ContextImpl("gcube");
|
||||||
gcube = create(gcube);
|
gcube = create(gcube);
|
||||||
|
|
Loading…
Reference in New Issue