/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/
 *
 * main.cpp
 *
 *  Created on: 00:00 Xreate Epoch
 *      Author: pgess <v.melnychenko@xreate.org>
 */

#include "utils.h"
#include "supplemental/basics.h"
#include <gtest/gtest.h>

using namespace std;
using namespace xreate;

int main(int argc, char **argv) {
    testing::GTEST_FLAG(color) = "yes";
    string testsTemplate = Config::get("template");
    string testsFilter = Config::get(string("templates.") + testsTemplate);
    testing::GTEST_FLAG(filter) = testsFilter;
    testing::InitGoogleTest(&argc, argv);

    return RUN_ALL_TESTS();
}
