2016-04-19 22:46:06 +02:00
|
|
|
/** @file
|
2015-10-19 21:12:04 +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)
|
2015-10-19 21:12:04 +02:00
|
|
|
*/
|
|
|
|
|
2016-10-02 23:49:03 +02:00
|
|
|
#include <etk/types.hpp>
|
|
|
|
#include <test-debug/debug.hpp>
|
2017-08-28 00:05:43 +02:00
|
|
|
#include <etk/Vector.hpp>
|
|
|
|
#include <etk/String.hpp>
|
2016-10-02 23:49:03 +02:00
|
|
|
#include <etk/archive/Archive.hpp>
|
|
|
|
#include <etk/etk.hpp>
|
|
|
|
#include <etk/Color.hpp>
|
|
|
|
#include <etk/stdTools.hpp>
|
2017-08-28 00:05:43 +02:00
|
|
|
#include <etk/String.hpp>
|
2015-10-19 21:12:04 +02:00
|
|
|
|
|
|
|
#define NAME "Empty"
|
2017-09-07 23:38:26 +02:00
|
|
|
#include <etest/etest.hpp>
|
2015-10-19 21:12:04 +02:00
|
|
|
|
|
|
|
int main(int argc, const char *argv[]) {
|
2017-09-17 00:12:49 +02:00
|
|
|
etest::init(argc, argv);
|
2015-10-19 21:12:04 +02:00
|
|
|
return RUN_ALL_TESTS();
|
|
|
|
}
|
|
|
|
|