Add Option 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
23 noinst_PROGRAMS = $(TESTS)
24
25 AM_CXXFLAGS = -I$(top_srcdir)/include -std=c++11
26
27 descriptive_holds_data_test_SOURCES  = descriptive/holds_data.cpp
28
29 callable_invokes_provided_function_test_SOURCES  = callable/invokes_provided_function.cpp
30 callable_invokes_void_function_test_SOURCES  = callable/invokes_void_function.cpp
31
32 parameter_is_descriptive_test_SOURCES  = parameter/is_descriptive.cpp
33
34 argument_handles_string_value_test_SOURCES  = argument/handles_string_value.cpp
35 argument_handles_int_value_test_SOURCES  = argument/handles_int_value.cpp
36 argument_handles_negative_int_value_test_SOURCES  = argument/handles_negative_int_value.cpp
37 argument_handles_float_value_test_SOURCES  = argument/handles_float_value.cpp
38 argument_handles_negative_float_value_test_SOURCES  = argument/handles_negative_float_value.cpp
39 argument_handles_boolean_value_test_SOURCES  = argument/handles_boolean_value.cpp
40
41 option_handles_string_value_test_SOURCES  = option/handles_string_value.cpp
42 option_handles_int_value_test_SOURCES = option/handles_int_value.cpp
43 option_handles_negative_int_value_test_SOURCES = option/handles_negative_int_value.cpp
44 option_handles_float_value_test_SOURCES  = option/handles_float_value.cpp
45 option_handles_negative_float_value_test_SOURCES  = option/handles_negative_float_value.cpp
46 option_handles_boolean_value_test_SOURCES  = option/handles_boolean_value.cpp
47 option_handles_void_value_test_SOURCES  = option/handles_void_value.cpp
48 option_should_match_exact_name_test_SOURCES  = option/should_match_exact_name.cpp