X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=tests%2FMakefile.am;h=214d6f2d9b94f2661b009ddfb0e4894c2b83cd03;hb=95af563cb577e8eedc95c0664a6529d12ea050ed;hp=0a9a6312be4c0cc4d094dc97f649f604b4aa232d;hpb=f8be1f0b025459a629e9fedd09011d8cc65a4a3c;p=command.git diff --git a/tests/Makefile.am b/tests/Makefile.am index 0a9a631..214d6f2 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -5,6 +5,7 @@ TESTS = \ callable_invokes_provided_function.test \ callable_invokes_void_function.test \ parameter_is_descriptive.test \ + parameter_should_be_non_required.test \ argument_handles_string_value.test \ argument_handles_int_value.test \ argument_handles_negative_int_value.test \ @@ -12,8 +13,17 @@ TESTS = \ 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_float_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 \ + multivalue_should_extract_arguments_by_separator.test \ + multivalue_should_extract_options_by_separator.test noinst_PROGRAMS = $(TESTS) @@ -25,6 +35,7 @@ callable_invokes_provided_function_test_SOURCES = callable/invokes_provided_fun callable_invokes_void_function_test_SOURCES = callable/invokes_void_function.cpp parameter_is_descriptive_test_SOURCES = parameter/is_descriptive.cpp +parameter_should_be_non_required_test_SOURCES = parameter/should_be_non_required.cpp argument_handles_string_value_test_SOURCES = argument/handles_string_value.cpp argument_handles_int_value_test_SOURCES = argument/handles_int_value.cpp @@ -34,5 +45,16 @@ argument_handles_negative_float_value_test_SOURCES = argument/handles_negative_ argument_handles_boolean_value_test_SOURCES = argument/handles_boolean_value.cpp option_handles_string_value_test_SOURCES = option/handles_string_value.cpp -option_handles_boolean_value_test_SOURCES = option/handles_boolean_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 + +multivalue_should_extract_arguments_by_separator_test_SOURCES = multiValue/should_extract_arguments_by_separator.cpp +multivalue_should_extract_options_by_separator_test_SOURCES = multiValue/should_extract_options_by_separator.cpp