etk/test/main.cpp

28 lines
564 B
C++
Raw Permalink Normal View History

2016-04-01 22:49:58 +02:00
/** @file
2013-07-11 11:23:25 +02:00
* @author Edouard DUPIN
* @copyright 2011, Edouard DUPIN, all right reserved
* @license MPL v2.0 (see license file)
2013-07-11 11:23:25 +02:00
*/
2016-10-02 15:58:09 +02:00
#include <etk/types.hpp>
#include <test-debug/debug.hpp>
2017-08-28 00:02:11 +02:00
#include <etk/Vector.hpp>
#include <etk/String.hpp>
2016-10-02 15:58:09 +02:00
#include <etk/etk.hpp>
#include <etk/stdTools.hpp>
2017-08-28 00:02:11 +02:00
#include <etk/String.hpp>
2013-07-11 11:23:25 +02:00
#include <etest/etest.hpp>
2013-11-11 20:16:55 +01:00
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;
2013-07-11 11:23:25 +02:00
}