diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-13 08:39:02 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-13 08:42:08 +0300 |
commit | 6913c6d965d64481ed09fc06a43154f35e8bd914 (patch) | |
tree | fa8d3f360a651a31fba4b91a09a5bba505a904c4 /test/unit_tests/parser.cpp | |
parent | Travis: only run clang-format on master (diff) | |
download | math-server-6913c6d965d64481ed09fc06a43154f35e8bd914.tar.gz math-server-6913c6d965d64481ed09fc06a43154f35e8bd914.zip |
clang-format all the code
Diffstat (limited to 'test/unit_tests/parser.cpp')
-rw-r--r-- | test/unit_tests/parser.cpp | 38 |
1 files changed, 18 insertions, 20 deletions
diff --git a/test/unit_tests/parser.cpp b/test/unit_tests/parser.cpp index 231be3d..2e90992 100644 --- a/test/unit_tests/parser.cpp +++ b/test/unit_tests/parser.cpp @@ -6,8 +6,8 @@ #include <server/parser/error.hpp> #include <server/parser/parser.hpp> -#include <boost/test/data/test_case.hpp> #include <boost/test/data/monomorphic.hpp> +#include <boost/test/data/test_case.hpp> #include <boost/test/unit_test.hpp> #include <string> @@ -83,7 +83,7 @@ const std::vector<double> expected{ -3.9375, }; -} +} // namespace exec::valid namespace exec::invalid { @@ -111,29 +111,27 @@ const std::vector<std::string> error_msg{ "server error: parser error: expected a binary operator", }; -} -} - -BOOST_DATA_TEST_CASE( - test_exec_valid, - bdata::make(exec::valid::input) ^ exec::valid::expected, - input, - expected) { +} // namespace exec::invalid +} // namespace +BOOST_DATA_TEST_CASE(test_exec_valid, + bdata::make(exec::valid::input) ^ exec::valid::expected, + input, + expected) { Parser parser{input}; BOOST_TEST(parser.exec() == expected); } -BOOST_DATA_TEST_CASE( - test_exec_invalid, - bdata::make(exec::invalid::input) ^ exec::invalid::error_msg, - input, - error_msg) { - - BOOST_REQUIRE_THROW(do { - Parser parser{input}; - parser.exec(); - } while (0), ParserError); +BOOST_DATA_TEST_CASE(test_exec_invalid, + bdata::make(exec::invalid::input) ^ exec::invalid::error_msg, + input, + error_msg) { + BOOST_REQUIRE_THROW( + do { + Parser parser{input}; + parser.exec(); + } while (0), + ParserError); try { Parser parser{input}; |