mirror of
https://github.com/enduro2d/enduro2d.git
synced 2025-12-15 00:11:55 +07:00
19 lines
619 B
C++
19 lines
619 B
C++
/*******************************************************************************
|
|
* This file is part of the "Enduro2D"
|
|
* For conditions of distribution and use, see copyright notice in LICENSE.md
|
|
* Copyright (C) 2018 Matvey Cherevko
|
|
******************************************************************************/
|
|
|
|
#include <iostream>
|
|
|
|
#include "_high.hpp"
|
|
using namespace e2d;
|
|
|
|
TEST_CASE("starter"){
|
|
modules::initialize<starter>(0, nullptr,
|
|
starter::parameters(
|
|
engine::parameters("starter_untests", "enduro2d")
|
|
.without_graphics(true)));
|
|
modules::shutdown<starter>();
|
|
}
|