Skip to content

Commit

Permalink
test: create, unload, delete db
Browse files Browse the repository at this point in the history
Signed-off-by: Jeronimo Irazabal <jeronimo.irazabal@gmail.com>
  • Loading branch information
jeroiraz committed Nov 17, 2022
1 parent 547121b commit 66de068
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions src/test/java/io/codenotary/immudb4j/MultidatabaseTest.java
Expand Up @@ -105,22 +105,14 @@ public void t5() throws VerificationException {
immuClient.closeSession();
}

@Test(testName = "create, unload, load and delete database")
@Test(testName = "create, unload and delete database")
public void t6() {
immuClient.openSession("defaultdb", "immudb", "immudb");

immuClient.createDatabase("manageddb");

immuClient.unloadDatabase("manageddb");

immuClient.loadDatabase("manageddb");

immuClient.closeSession();

immuClient.openSession("manageddb", "immudb", "immudb");

immuClient.unloadDatabase("manageddb");

immuClient.deleteDatabase("manageddb");

immuClient.closeSession();
Expand Down

0 comments on commit 66de068

Please sign in to comment.