blob: f1a1a1cd55eaed829bc0b4cb7163da6295189204 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include <vector>
#include <gtest/gtest.h>
#include <gmock/gmock.h>
#include <mw/error.hpp>
#include <mw/utils.hpp>
#include <mw/test_utils.hpp>
#include "data.hpp"
using ::testing::IsEmpty;
TEST(DataSource, CanAddAndDeleteLink)
{
ASSIGN_OR_FAIL(std::unique_ptr<DataSourceSQLite> data,
DataSourceSQLite::newFromMemory());
}
|