Add Required tests.
[command.git] / tests / Makefile.am
1 AUTOMAKE_OPTIONS = subdir-objects
2
3 TESTS = \
4         descriptive_holds_data.test \
5         callable_invokes_provided_function.test \
6         callable_invokes_void_function.test \
7         parameter_is_descriptive.test \
8         argument_handles_string_value.test \
9         argument_handles_int_value.test \
10         argument_handles_negative_int_value.test \
11         argument_handles_float_value.test \
12         argument_handles_negative_float_value.test \
13         argument_handles_boolean_value.test \
14         option_handles_string_value.test \
15         option_handles_int_value.test \
16         option_handles_negative_int_value.test \
17         option_handles_float_value.test \
18         option_handles_negative_float_value.test \
19         option_handles_boolean_value.test \
20         option_handles_void_value.test \
21         option_should_match_exact_name.test \
22         option_should_throw_exception_on_missing_value.test \
23         required_should_be_required.test
24
25 noinst_PROGRAMS = $(TESTS)
26
27 AM_CXXFLAGS = -I$(top_srcdir)/include -std=c++11
28
29 descriptive_holds_data_test_SOURCES  = descriptive/holds_data.cpp
30
31 callable_invokes_provided_function_test_SOURCES  = callable/invokes_provided_function.cpp
32 callable_invokes_void_function_test_SOURCES  = callable/invokes_void_function.cpp
33
34 parameter_is_descriptive_test_SOURCES  = parameter/is_descriptive.cpp
35
36 argument_handles_string_value_test_SOURCES  = argument/handles_string_value.cpp
37 argument_handles_int_value_test_SOURCES  = argument/handles_int_value.cpp
38 argument_handles_negative_int_value_test_SOURCES  = argument/handles_negative_int_value.cpp
39 argument_handles_float_value_test_SOURCES  = argument/handles_float_value.cpp
40 argument_handles_negative_float_value_test_SOURCES  = argument/handles_negative_float_value.cpp
41 argument_handles_boolean_value_test_SOURCES  = argument/handles_boolean_value.cpp
42
43 option_handles_string_value_test_SOURCES  = option/handles_string_value.cpp
44 option_handles_int_value_test_SOURCES = option/handles_int_value.cpp
45 option_handles_negative_int_value_test_SOURCES = option/handles_negative_int_value.cpp
46 option_handles_float_value_test_SOURCES  = option/handles_float_value.cpp
47 option_handles_negative_float_value_test_SOURCES  = option/handles_negative_float_value.cpp
48 option_handles_boolean_value_test_SOURCES  = option/handles_boolean_value.cpp
49 option_handles_void_value_test_SOURCES  = option/handles_void_value.cpp
50 option_should_match_exact_name_test_SOURCES  = option/should_match_exact_name.cpp
51 option_should_throw_exception_on_missing_value_test_SOURCES = option/should_throw_exception_on_missing_value.cpp
52
53 required_should_be_required_test_SOURCES = required/should_be_required.cpp