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
|
2017-01-05 21:28:23 +01:00
|
|
|
* @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
|
|
|
|
2017-09-12 22:47:30 +02:00
|
|
|
|
2017-09-05 23:07:32 +02:00
|
|
|
#include <etest/etest.hpp>
|
2014-11-25 21:32:51 +01:00
|
|
|
|
2013-11-11 20:16:55 +01:00
|
|
|
int main(int argc, const char *argv[]) {
|
2017-09-05 23:07:32 +02:00
|
|
|
// init test engine:
|
2018-09-10 21:42:09 +02:00
|
|
|
etk::init(argc, argv);
|
2017-09-05 23:07:32 +02:00
|
|
|
etest::init(argc, argv);
|
2017-10-21 19:05:21 +02:00
|
|
|
TEST_INFO("TEST ETK");
|
2018-09-10 21:42:09 +02:00
|
|
|
int out = RUN_ALL_TESTS();
|
|
|
|
etest::unInit();
|
|
|
|
etk::unInit();
|
|
|
|
return out;
|
2013-07-11 11:23:25 +02:00
|
|
|
}
|