From 1a8ec165031af3b860028ef1b360acc8e7baf9e6 Mon Sep 17 00:00:00 2001 From: TravisBot <> Date: Thu, 21 Sep 2017 23:32:46 +0000 Subject: Rebuilding documentation --- tests/yagetest.cpp | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 tests/yagetest.cpp (limited to 'tests/yagetest.cpp') diff --git a/tests/yagetest.cpp b/tests/yagetest.cpp new file mode 100644 index 00000000..afadc745 --- /dev/null +++ b/tests/yagetest.cpp @@ -0,0 +1,26 @@ +/* ---------------------------------------------------------------------------- + * yagetest.cpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + +#include +#include + +TEST(YAGE, InitQuit) +{ + try { + yage::init(); + yage::quit(); + } catch(std::runtime_error e) { +// ASSERT_TRUE(false); + } +} + +int main(int argc, char **argv) +{ + testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +} -- cgit