22 lines
299 B
C++
22 lines
299 B
C++
#ifndef QUERY_FIXTURE_HPP
|
|
#define QUERY_FIXTURE_HPP
|
|
|
|
#include "matador/sql/connection.hpp"
|
|
|
|
#include <memory>
|
|
|
|
namespace matador::test {
|
|
|
|
class QueryFixture {
|
|
public:
|
|
QueryFixture();
|
|
~QueryFixture() = default;
|
|
|
|
protected:
|
|
std::unique_ptr<sql::connection> db;
|
|
};
|
|
|
|
}
|
|
|
|
#endif //QUERY_FIXTURE_HPP
|