generated from Sithas/conan_template
Подготовка фикстуры
This commit is contained in:
@@ -13,6 +13,7 @@
|
||||
#include "./../../src/db/mysql_connector.h"
|
||||
#include "./../../src/exceptions/session_exception.h"
|
||||
#include "./../../src/helpers/helpers.h"
|
||||
#include "./../fixtures/AuthRegistrationExecutorTestFixture.h"
|
||||
|
||||
const std::string kUUID = std::to_string(uad::Random());
|
||||
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
#include "AuthRegistrationExecutorTestFixture.h"
|
||||
|
||||
#include <boost/test/unit_test.hpp>
|
||||
|
||||
namespace uad
|
||||
{
|
||||
F::F(): i( 0 ) { BOOST_TEST_MESSAGE( "setup fixture" ); }
|
||||
|
||||
F::~F() { BOOST_TEST_MESSAGE( "teardown fixture" ); }
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
#pragma once
|
||||
|
||||
namespace uad
|
||||
{
|
||||
class F {
|
||||
F();
|
||||
~F();
|
||||
|
||||
int i;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user