File tree Expand file tree Collapse file tree 1 file changed +0
-11
lines changed
src/test/java/com/microsoft/sqlserver/jdbc/callablestatement Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -113,17 +113,6 @@ public static void setupTest() throws Exception {
113
113
}
114
114
}
115
115
116
- @ Test
117
- public void testCallableStatementClosedConnection () {
118
- try (SQLServerCallableStatement stmt = (SQLServerCallableStatement ) connection .prepareCall ("sproc" )) {
119
- stmt .close (); // Prematurely close the statement, which causes inOutParams to be null.
120
- stmt .setStructured ("myParam" , "myTvp" , (SQLServerDataTable ) null );
121
- fail (TestResource .getResource ("R_expectedFailPassed" ));
122
- } catch (Exception e ) {
123
- assertEquals (TestResource .getResource ("R_statementClosed" ), e .getMessage ());
124
- }
125
- }
126
-
127
116
// Test Needs more work to be configured to run on azureDB as there are slight differences
128
117
// between the regular SQL Server vs. azureDB
129
118
@ Test
You can’t perform that action at this time.
0 commit comments