Line data Source code
1 : #include <fas/testing.hpp>
2 : #include <wfc/module/testing_domain.hpp>
3 : #include <prefixdb/prefixdb/prefixdb.hpp>
4 :
5 :
6 : namespace {
7 :
8 3 : UNIT(init, "")
9 : {
10 : using namespace fas::testing;
11 :
12 1 : auto ptest = std::make_shared<wfc::testing_domain>();
13 2 : wamba::prefixdb::prefixdb::domain_config conf;
14 2 : auto pdemo = ptest->create<wamba::prefixdb::prefixdb>(conf);
15 2 : t << nothing;
16 1 : }
17 :
18 : }
19 :
20 1 : BEGIN_SUITE(prefixdb_suite, "")
21 : ADD_UNIT( init )
22 7 : END_SUITE(prefixdb_suite)
|