ewol/test/main.cpp

30 lines
660 B
C++
Raw Normal View History

/** @file
2015-10-19 21:12:04 +02:00
* @author Edouard DUPIN
* @copyright 2011, Edouard DUPIN, all right reserved
* @license APACHE v2.0 (see license file)
*/
#include <etk/types.h>
#include <test-debug/debug.h>
#include <vector>
#include <string>
#include <etk/Hash.h>
#include <etk/os/FSNode.h>
#include <etk/archive/Archive.h>
#include <etk/etk.h>
2015-10-19 21:12:04 +02:00
#include <etk/Color.h>
#include <etk/stdTools.h>
#include <string>
#define NAME "Empty"
#include <gtest/gtest.h>
int main(int argc, const char *argv[]) {
// init Google test :
::testing::InitGoogleTest(&argc, const_cast<char **>(argv));
etk::init(argc, argv);
2015-10-19 21:12:04 +02:00
etk::initDefaultFolder("ewol-test");
return RUN_ALL_TESTS();
}