18 lines
451 B
C++
18 lines
451 B
C++
/** @file
|
|
* @author Edouard DUPIN
|
|
* @copyright 2015, Edouard DUPIN, all right reserved
|
|
* @license MPL v2.0 (see license file)
|
|
*/
|
|
|
|
#include <test-debug/debug.hpp>
|
|
#include <ewol/context/Context.hpp>
|
|
#include <etest/etest.hpp>
|
|
#define NAME "Application"
|
|
|
|
TEST(TestEwolApplication, Creation) {
|
|
ewol::context::Application* tmpAppl = ETK_NEW(ewol::context::Application);
|
|
EXPECT_NE(tmpAppl, null);
|
|
ETK_DELETE(ewol::context::Application, tmpAppl);
|
|
}
|
|
|