etk/test/main.cpp

28 lines
621 B
C++
Raw 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>
2013-11-11 20:16:55 +01:00
#include <vector>
#include <string>
2016-10-02 15:58:09 +02:00
#include <etk/etk.hpp>
#include <etk/stdTools.hpp>
2014-10-03 00:47:59 +02:00
#include <string>
2013-07-11 11:23:25 +02:00
#include <etk/os/FSNode.hpp>
#include <gtest/gtest.h>
2013-11-11 20:16:55 +01:00
int main(int argc, const char *argv[]) {
// init Google test :
::testing::InitGoogleTest(&argc, const_cast<char **>(argv));
2013-07-11 11:23:25 +02:00
// the only one init for etk:
2016-04-04 21:55:27 +02:00
etk::init(argc, argv);
2013-11-13 21:52:12 +01:00
etk::initDefaultFolder("ewolApplNoName");
//testRegExp();
return RUN_ALL_TESTS();
2013-07-11 11:23:25 +02:00
}