Files
enduro2d/untests/sources/untests_high/scene.cpp
2019-02-09 18:16:45 +07:00

22 lines
585 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 "_high.hpp"
using namespace e2d;
TEST_CASE("scene") {
SECTION("ctor") {
auto s = scene::create();
REQUIRE(s);
REQUIRE(s->root());
{
const_scene_iptr cs = s;
REQUIRE(cs->root());
}
}
}