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