Skip to content

Commit

Permalink
Refactor AbstractUnsupportedOperationStatement
Browse files Browse the repository at this point in the history
  • Loading branch information
terrymanu committed May 26, 2024
1 parent 21fd1cd commit 80f7c9d
Showing 1 changed file with 0 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,6 @@ void setUp() {
shardingSphereStatement = new ShardingSphereStatement(connection);
}

@Test
void assertCloseOnCompletion() {
assertThrows(SQLFeatureNotSupportedException.class, () -> shardingSphereStatement.closeOnCompletion());
}

@Test
void assertIsCloseOnCompletion() {
assertThrows(SQLFeatureNotSupportedException.class, () -> shardingSphereStatement.isCloseOnCompletion());
}

@Test
void assertSetCursorName() {
assertThrows(SQLFeatureNotSupportedException.class, () -> shardingSphereStatement.setCursorName("cursorName"));
Expand Down

0 comments on commit 80f7c9d

Please sign in to comment.