ejson/test/test.cpp

25 lines
538 B
C++
Raw Normal View History

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
* @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);
// 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();
}