Add Possibility to set MultiValue Parameters.
[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         parameter_should_be_non_required.test \
9         argument_handles_string_value.test \
10         argument_handles_int_value.test \
11         argument_handles_negative_int_value.test \
12         argument_handles_float_value.test \
13         argument_handles_negative_float_value.test \
14         argument_handles_boolean_value.test \
15         option_handles_string_value.test \
16         option_handles_int_value.test \
17         option_handles_negative_int_value.test \
18         option_handles_float_value.test \
19         option_handles_negative_float_value.test \
20         option_handles_boolean_value.test \
21         option_handles_void_value.test \
22         option_should_match_exact_name.test \
23         option_should_throw_exception_on_missing_value.test \
24         required_should_be_required.test \
25         multivalue_should_extract_values_by_separator.test
26
27 noinst_PROGRAMS = $(TESTS)
28
29 AM_CXXFLAGS = -I$(top_srcdir)/include -std=c++11
30
31 descriptive_holds_data_test_SOURCES  = descriptive/holds_data.cpp
32
33 callable_invokes_provided_function_test_SOURCES  = callable/invokes_provided_function.cpp
34 callable_invokes_void_function_test_SOURCES  = callable/invokes_void_function.cpp
35
36 parameter_is_descriptive_test_SOURCES  = parameter/is_descriptive.cpp
37 parameter_should_be_non_required_test_SOURCES = parameter/should_be_non_required.cpp
38
39 argument_handles_string_value_test_SOURCES  = argument/handles_string_value.cpp
40 argument_handles_int_value_test_SOURCES  = argument/handles_int_value.cpp
41 argument_handles_negative_int_value_test_SOURCES  = argument/handles_negative_int_value.cpp
42 argument_handles_float_value_test_SOURCES  = argument/handles_float_value.cpp
43 argument_handles_negative_float_value_test_SOURCES  = argument/handles_negative_float_value.cpp
44 argument_handles_boolean_value_test_SOURCES  = argument/handles_boolean_value.cpp
45
46 option_handles_string_value_test_SOURCES  = option/handles_string_value.cpp
47 option_handles_int_value_test_SOURCES = option/handles_int_value.cpp
48 option_handles_negative_int_value_test_SOURCES = option/handles_negative_int_value.cpp
49 option_handles_float_value_test_SOURCES  = option/handles_float_value.cpp
50 option_handles_negative_float_value_test_SOURCES  = option/handles_negative_float_value.cpp
51 option_handles_boolean_value_test_SOURCES  = option/handles_boolean_value.cpp
52 option_handles_void_value_test_SOURCES  = option/handles_void_value.cpp
53 option_should_match_exact_name_test_SOURCES  = option/should_match_exact_name.cpp
54 option_should_throw_exception_on_missing_value_test_SOURCES = option/should_throw_exception_on_missing_value.cpp
55
56 required_should_be_required_test_SOURCES = required/should_be_required.cpp
57
58 multivalue_should_extract_values_by_separator_test_SOURCES = multiValue/should_extract_values_by_separator.cpp