Подготовка фикстуры

This commit is contained in:
Антон
2025-11-14 13:47:12 +03:00
parent a63ca6bdb3
commit 97c5e67705
5 changed files with 35 additions and 5 deletions
@@ -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());
+10
View File
@@ -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" ); }
}
+11
View File
@@ -0,0 +1,11 @@
#pragma once
namespace uad
{
class F {
F();
~F();
int i;
};
}