The following two tests are disabled in single-threaded mode because they require multiple threads to run.
| 33 | // The following two tests are disabled in single-threaded mode because they |
| 34 | // require multiple threads to run. |
| 35 | static void parallel_query(Connection* conn) { |
| 36 | for (auto i = 0u; i < 100; ++i) { |
| 37 | assertMatchPersonCountStar(conn); |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | TEST_F(ApiTest, ParallelQuerySingleConnect) { |
| 42 | const auto numThreads = 20u; |
nothing calls this directly
no test coverage detected