/** @file * @author Edouard DUPIN * @copyright 2011, Edouard DUPIN, all right reserved * @license MPL v2.0 (see license file) */ #include #include #include #include #include #include #include #include int main(int argc, const char *argv[]) { // init test engine: etk::init(argc, argv); etest::init(argc, argv); TEST_INFO("TEST ETK"); int out = RUN_ALL_TESTS(); etest::unInit(); etk::unInit(); return out; }