/** @file * @author Edouard DUPIN * * @copyright 2015, Edouard DUPIN, all right reserved * * @license APACHE v2.0 (see license file) */ #include #include #include #define NAME "Windows" namespace appl { class Windows : public ewol::widget::Windows { protected: Windows() { addObjectType("appl::Windows"); propertyTitle.setDirectCheck("test set"); } void init() { ewol::widget::Windows::init(); } public: DECLARE_FACTORY(Windows); }; } TEST(TestEwolWindows, Creation) { /* std::shared_ptr tmpWindows = appl::Windows::create(); EXPECT_NE(tmpWindows, nullptr); tmpWindows.reset(); */ }