2
0
mirror of https://github.com/boostorg/mysql.git synced 2026-02-14 00:42:53 +00:00

Integ tests now run with and without ssl

This commit is contained in:
ruben
2020-04-05 12:49:37 +01:00
parent c486dbbf96
commit b18cbd2aa6
12 changed files with 106 additions and 56 deletions

View File

@@ -23,9 +23,9 @@ using boost::mysql::errc;
namespace
{
struct QueryTest : public NetworkTest<>
struct QueryTest : public NetworkTest
{
auto do_query(std::string_view sql) { return GetParam()->query(conn, sql); }
auto do_query(std::string_view sql) { return GetParam().net->query(conn, sql); }
};
TEST_P(QueryTest, InsertQueryOk)