This commit is contained in:
2026-02-16 21:02:47 +01:00
committed by Romain BOULLARD
parent 56e558e830
commit 7c0f086969
3 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
/*********************************************************************
* \file Generator.cpp
*
* \author Romain BOULLARD
* \date February 2026
*********************************************************************/
#include <Generator.hpp>
namespace Bin2CPP
{
} // namespace Bin2CPP

View File

@@ -0,0 +1,14 @@
/*********************************************************************
* \file Generator.hpp
*
* \author Romain BOULLARD
* \date February 2026
*********************************************************************/
#ifndef BIN2CPP_GENERATOR_HPP
#define BIN2CPP_GENERATOR_HPP
namespace Bin2CPP
{
} // namespace Bin2CPP
#endif

View File

@@ -0,0 +1,20 @@
/*********************************************************************
* \file Generator.cpp
*
* \author Romain BOULLARD
* \date February 2026
*********************************************************************/
#include <Generator.hpp>
#include <Log.hpp>
#include <gtest/gtest.h>
namespace Bin2CPP
{
class GeneratorFixture: public ::testing::Test
{
protected:
Singleton<Log>::Lifetime m_lifetime;
};
} // namespace Bin2CPP