| 168 | } |
| 169 | |
| 170 | void ODBCTestBase::SetUp() { |
| 171 | if (connected) { |
| 172 | ASSERT_EQ(SQL_SUCCESS, SQLAllocHandle(SQL_HANDLE_STMT, conn, &stmt)); |
| 173 | } |
| 174 | } |
| 175 | |
| 176 | void ODBCTestBase::TearDown() { |
| 177 | if (connected) { |
nothing calls this directly
no test coverage detected