summaryrefslogtreecommitdiff
path: root/mythfs/unittests/mockDefs.cpp
blob: 68dec08235467d3254870fba5759ea8e2b6d18ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "mockDefs.h"
#include <definedDirs.h>

Service::Service() :
	MySQL::Mock("mythconverg", {
			rootDir / "fixtures" / "schema.sql",
			rootDir / "fixtures" / "data.sql"
		})
{
}

TestClient::TestClient() :
	db(getProxy<MythFS::DBPrx>("db")),
	s(getProxy<NetFS::ServicePrx>("service"))
{
}