1 /*
2 Copyright 2021-2022 René Ferdinand Rivera Morell
3 Distributed under the Boost Software License, Version 1.0.
4 (See accompanying file LICENSE.txt or copy at
5 http://www.boost.org/LICENSE_1_0.txt)
6 */
7 
8 #include "main_test.hpp"
9 
10 #include "option_styles.cpp"
11 
12 #include "main_test.hpp"
13 
main()14 int main()
15 {
16 	bfg::mini_test::scope test;
17 	{
18 		TEST_MAIN(test, "option_styles");
19 		TEST_MAIN(test, "option_styles", "~h");
20 		TEST_MAIN(test, "option_styles", "++flag");
21 		TEST_MAIN(test, "option_styles", "++name,Jane");
22 		TEST_MAIN_FAIL(test, "option_styles", "-h");
23 		TEST_MAIN_FAIL(test, "option_styles", "--flag");
24 		TEST_MAIN_FAIL(test, "option_styles", "--name=Jane");
25 	}
26 	return test;
27 }
28