30 lines
676 B
C++
30 lines
676 B
C++
/** @file
|
|
* @author Edouard DUPIN
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
* @license APACHE v2.0 (see license file)
|
|
*/
|
|
|
|
#include <etk/types.hpp>
|
|
#include <test-debug/debug.hpp>
|
|
#include <vector>
|
|
#include <string>
|
|
#include <etk/Hash.hpp>
|
|
#include <etk/os/FSNode.hpp>
|
|
#include <etk/archive/Archive.hpp>
|
|
#include <etk/etk.hpp>
|
|
#include <etk/Color.hpp>
|
|
#include <etk/stdTools.hpp>
|
|
#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);
|
|
etk::initDefaultFolder("ewol-test");
|
|
return RUN_ALL_TESTS();
|
|
}
|
|
|