Ignored tests

This commit is contained in:
Luca Frosini 2024-11-12 17:01:13 +01:00
parent cd39b70533
commit 642a98f76f
1 changed files with 7 additions and 6 deletions

View File

@ -24,23 +24,23 @@ public class DataBaseCreator extends ContextTest {
@Test
public void createDatabase() throws Exception {
ContextTest.setContextByName(ROOT_DEV);
ContextTest.setContextByName(GCUBE);
logger.debug("Going to create DB");
String db = DatabaseEnvironment.DB_URI;
logger.debug("{} created", db);
}
// @Ignore
@Test
@Ignore
// @Test
public void createAllContexts() throws Exception {
ContextTest.setContextByName(ROOT_DEV);
ContextTest.setContextByName(GCUBE);
ContextCreator contextCreator = new ContextCreator();
contextCreator.all();
}
@Test
public void checkAllContexts() throws Exception {
ContextTest.setContextByName(ROOT_DEV);
ContextTest.setContextByName(GCUBE);
ContextTester contextTester = new ContextTester();
contextTester.all();
}
@ -54,7 +54,8 @@ public class DataBaseCreator extends ContextTest {
return c;
}
@Test
@Ignore
// @Test
public void createDevContexts() throws Exception {
Context gcube = new ContextImpl("gcube");
gcube = create(gcube);