Skip to content

Commit

Permalink
- MissingDataTest now extends IntegrationTest because otherwise it is…
Browse files Browse the repository at this point in the history
… not executed in IDE (why?)

- removed public from all test classes
  • Loading branch information
alexradzin committed Nov 15, 2023
1 parent 3eba254 commit 418ec79
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import static org.junit.jupiter.api.Assertions.assertThrows;

@TestInstance(TestInstance.Lifecycle.PER_CLASS)
public class MissingDataTest {
class MissingDataTest extends IntegrationTest {
@Test
@Tag("v2")
void missingAccount() throws SQLException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.junit.jupiter.api.Assertions.assertTrue;

public class NullableValuesTest extends IntegrationTest {
class NullableValuesTest extends IntegrationTest {
@BeforeEach
void beforeAll() {
executeStatementFromFile("/statements/nullable-types/ddl.sql");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

import static org.junit.jupiter.api.Assertions.assertEquals;

public class NumericTypesTest extends IntegrationTest {
class NumericTypesTest extends IntegrationTest {
@Test
void shouldHaveCorrectInfo() throws SQLException {
try (Connection connection = this.createConnection(null);
Expand Down

0 comments on commit 418ec79

Please sign in to comment.