| 228 | } |
| 229 | |
| 230 | void ODBCTestBase::SetUp() { |
| 231 | ASSERT_EQ(SQL_SUCCESS, SQLAllocHandle(SQL_HANDLE_STMT, conn, &stmt)); |
| 232 | } |
| 233 | |
| 234 | void ODBCTestBase::TearDown() { |
| 235 | ASSERT_EQ(SQL_SUCCESS, SQLFreeHandle(SQL_HANDLE_STMT, stmt)); |
nothing calls this directly
no test coverage detected