mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
20 lines
366 B
C++
20 lines
366 B
C++
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
#include "rbx/test/Base.UnitTest.Lib.h"
|
|
|
|
namespace RBX {
|
|
namespace Test {
|
|
// Define this fixture in your project:
|
|
// BOOST_GLOBAL_FIXTURE(AppGlobalFixture);
|
|
class AppGlobalFixture
|
|
{
|
|
public:
|
|
AppGlobalFixture();
|
|
|
|
// returns true if the arg is processed
|
|
static bool processArg(const std::string arg);
|
|
};
|
|
}
|
|
}
|