rqlite / rqlite-java

Java client for rqlite, the lightweight distributed relational database
MIT License
30 stars 10 forks source link

Added test table teardown #6

Closed hprovenza closed 4 years ago

hprovenza commented 4 years ago

Dropping tables at the end of the test facilitates repeated runs of the tests.

otoolep commented 4 years ago

Thanks.

FWIW, I think we want to fix up the code so it's more like this: https://examples.javacodegeeks.com/core-java/junit/junit-setup-teardown-example/

and then we can @Before and @After.