X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=tests%2FMakefile.am;h=6a0fa06e817a8d3e019ca9bb6d09de7217ad2c7c;hb=0c3fb217c99492ca15f3ff4a8a0402b801d7105f;hp=b60d58a44f5824db81ffd3ba4d2523cd1cec2b8a;hpb=63fefd67d80752203267286ad5f18188519645f4;p=command.git diff --git a/tests/Makefile.am b/tests/Makefile.am index b60d58a..6a0fa06 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -3,14 +3,51 @@ AUTOMAKE_OPTIONS = subdir-objects TESTS = \ descriptive_holds_data.test \ callable_invokes_provided_function.test \ + callable_invokes_void_function.test \ parameter_is_descriptive.test \ - argument_handles_string_value.test + argument_handles_string_value.test \ + argument_handles_int_value.test \ + argument_handles_negative_int_value.test \ + argument_handles_float_value.test \ + argument_handles_negative_float_value.test \ + argument_handles_boolean_value.test \ + option_handles_string_value.test \ + option_handles_int_value.test \ + option_handles_negative_int_value.test \ + option_handles_float_value.test \ + option_handles_negative_float_value.test \ + option_handles_boolean_value.test \ + option_handles_void_value.test \ + option_should_match_exact_name.test \ + option_should_throw_exception_on_missing_value.test \ + required_should_be_required.test noinst_PROGRAMS = $(TESTS) -AM_CXXFLAGS = -O3 -I$(top_srcdir)/include -std=c++11 +AM_CXXFLAGS = -I$(top_srcdir)/include -std=c++11 descriptive_holds_data_test_SOURCES = descriptive/holds_data.cpp + callable_invokes_provided_function_test_SOURCES = callable/invokes_provided_function.cpp +callable_invokes_void_function_test_SOURCES = callable/invokes_void_function.cpp + parameter_is_descriptive_test_SOURCES = parameter/is_descriptive.cpp + argument_handles_string_value_test_SOURCES = argument/handles_string_value.cpp +argument_handles_int_value_test_SOURCES = argument/handles_int_value.cpp +argument_handles_negative_int_value_test_SOURCES = argument/handles_negative_int_value.cpp +argument_handles_float_value_test_SOURCES = argument/handles_float_value.cpp +argument_handles_negative_float_value_test_SOURCES = argument/handles_negative_float_value.cpp +argument_handles_boolean_value_test_SOURCES = argument/handles_boolean_value.cpp + +option_handles_string_value_test_SOURCES = option/handles_string_value.cpp +option_handles_int_value_test_SOURCES = option/handles_int_value.cpp +option_handles_negative_int_value_test_SOURCES = option/handles_negative_int_value.cpp +option_handles_float_value_test_SOURCES = option/handles_float_value.cpp +option_handles_negative_float_value_test_SOURCES = option/handles_negative_float_value.cpp +option_handles_boolean_value_test_SOURCES = option/handles_boolean_value.cpp +option_handles_void_value_test_SOURCES = option/handles_void_value.cpp +option_should_match_exact_name_test_SOURCES = option/should_match_exact_name.cpp +option_should_throw_exception_on_missing_value_test_SOURCES = option/should_throw_exception_on_missing_value.cpp + +required_should_be_required_test_SOURCES = required/should_be_required.cpp