generated from Sithas/conan_template
Подготовка фикстуры
This commit is contained in:
@@ -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