2015-01-12 21:12:44 +01:00
|
|
|
/**
|
|
|
|
* @author Edouard DUPIN
|
2015-01-13 22:29:26 +01:00
|
|
|
* @copyright 2014, Edouard DUPIN, all right reserved
|
2017-01-05 21:28:23 +01:00
|
|
|
* @license MPL v2.0 (see license file)
|
2015-01-12 21:12:44 +01:00
|
|
|
*/
|
|
|
|
|
2017-08-28 00:03:43 +02:00
|
|
|
#include <etk/Vector.hpp>
|
2016-09-30 22:28:36 +02:00
|
|
|
#include <etk/etk.hpp>
|
|
|
|
#include <etk/types.hpp>
|
|
|
|
#include <etk/archive/Archive.hpp>
|
|
|
|
#include <test-debug/debug.hpp>
|
|
|
|
#include <ejson/ejson.hpp>
|
2017-09-07 23:38:26 +02:00
|
|
|
#include <etest/etest.hpp>
|
2015-01-12 21:12:44 +01:00
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, const char *argv[]) {
|
2017-09-07 23:38:26 +02:00
|
|
|
// init test engine:
|
|
|
|
etest::init(argc, argv);
|
2015-08-27 22:41:41 +02:00
|
|
|
// init etk log system and file interface:
|
|
|
|
etk::init(argc, argv);
|
2017-09-07 23:38:26 +02:00
|
|
|
// Run all test with etest
|
2015-01-12 21:12:44 +01:00
|
|
|
return RUN_ALL_TESTS();
|
|
|
|
}
|
|
|
|
|