aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/unittest/sqlitereadstatementmock.cpp
blob: c0cfd8a72bc66e93d7ab1daca7da733eefa74f01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#include "sqlitereadstatementmock.h"

#include "sqlitedatabasemock.h"

SqliteReadStatementMockBase::SqliteReadStatementMockBase(Utils::SmallStringView sqlStatement,
                                                         SqliteDatabaseMock &databaseMock)
    : sqlStatement(sqlStatement)
{
    databaseMock.prepare(sqlStatement);
}