From 1a4679768b54196ed2a49e606f9ff2d0018cd3f1 Mon Sep 17 00:00:00 2001 From: yumetodo Date: Mon, 11 Jul 2016 02:08:54 +0900 Subject: [PATCH 1/2] test --- test.hpp | 7 +++++++ test/test.cpp | 10 +++++----- test/test.hpp | 7 +++++++ 3 files changed, 19 insertions(+), 5 deletions(-) create mode 100644 test.hpp create mode 100644 test/test.hpp diff --git a/test.hpp b/test.hpp new file mode 100644 index 0000000..0b6d593 --- /dev/null +++ b/test.hpp @@ -0,0 +1,7 @@ +#ifndef INC_TEST_HPP_ +#define INC_TEST_HPP_ +#include +void f0(){ + std::cout << "f0" << std::endl; +} +#endif diff --git a/test/test.cpp b/test/test.cpp index 3424c01..b130092 100644 --- a/test/test.cpp +++ b/test/test.cpp @@ -1,9 +1,7 @@ -#ifdef __WANDBOX__ -#include "string_split.hpp" -#else -#include "../include/string_split.hpp" -#endif +#include "../include/string_split.hpp" #include "../iutest/include/iutest.hpp" +#include "../test.hpp" +#include "test.hpp" #include #include #include @@ -151,6 +149,8 @@ IUTEST_TEST(SplitCovertToIntBySingeCharTest, type_wchar_t) { int main(int argc, char** argv) { + f0(); + f1(); IUTEST_INIT(&argc, argv); return IUTEST_RUN_ALL_TESTS(); } \ No newline at end of file diff --git a/test/test.hpp b/test/test.hpp new file mode 100644 index 0000000..aeb61bd --- /dev/null +++ b/test/test.hpp @@ -0,0 +1,7 @@ +#ifndef INC_TEST_TEST_HPP_ +#define INC_TEST_TEST_HPP_ +#include +void f1(){ + std::cout << "f1" << std::endl; +} +#endif From 61134a30a39f02f0564c924c87bb2f75c16321a0 Mon Sep 17 00:00:00 2001 From: yumetodo Date: Tue, 12 Jul 2016 15:47:38 +0900 Subject: [PATCH 2/2] fix file encode --- test/test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.cpp b/test/test.cpp index 064517a..c05b5fa 100644 --- a/test/test.cpp +++ b/test/test.cpp @@ -1,4 +1,4 @@ -/*============================================================================= +/*============================================================================= Copyright (C) 2016 yumetodo Distributed under the Boost Software License, Version 1.0.