Lines Matching +full:tcs +full:- +full:config
29 #include "utils/config/exceptions.hpp"
33 #include <atf-c++.hpp>
35 #include "utils/config/tree.ipp"
37 namespace config = utils::config;
38 namespace detail = utils::config::detail;
44 const config::error e("Some text"); in ATF_TEST_CASE_BODY()
56 const config::bad_combination_error e(key, "Failed to combine '%s'"); in ATF_TEST_CASE_BODY()
64 const config::invalid_key_error e("Some text"); in ATF_TEST_CASE_BODY()
76 const config::invalid_key_value e(key, "foo bar"); in ATF_TEST_CASE_BODY()
85 const config::syntax_error e("Some text"); in ATF_TEST_CASE_BODY()
97 const config::unknown_key_error e(key); in ATF_TEST_CASE_BODY()
110 const config::unknown_key_error e(key, "The test '%s' string"); in ATF_TEST_CASE_BODY()
118 const config::value_error e("Some text"); in ATF_TEST_CASE_BODY()
123 ATF_INIT_TEST_CASES(tcs) in ATF_INIT_TEST_CASES() argument
125 ATF_ADD_TEST_CASE(tcs, error); in ATF_INIT_TEST_CASES()
126 ATF_ADD_TEST_CASE(tcs, bad_combination_error); in ATF_INIT_TEST_CASES()
127 ATF_ADD_TEST_CASE(tcs, invalid_key_error); in ATF_INIT_TEST_CASES()
128 ATF_ADD_TEST_CASE(tcs, invalid_key_value); in ATF_INIT_TEST_CASES()
129 ATF_ADD_TEST_CASE(tcs, syntax_error); in ATF_INIT_TEST_CASES()
130 ATF_ADD_TEST_CASE(tcs, unknown_key_error__default_message); in ATF_INIT_TEST_CASES()
131 ATF_ADD_TEST_CASE(tcs, unknown_key_error__custom_message); in ATF_INIT_TEST_CASES()
132 ATF_ADD_TEST_CASE(tcs, value_error); in ATF_INIT_TEST_CASES()