Added some Command tests.
[command.git] / tests / Makefile.am
index 6a0fa06e817a8d3e019ca9bb6d09de7217ad2c7c..f489244dbb64842ade7103a7c945919faa11a087 100644 (file)
@@ -1,10 +1,11 @@
 AUTOMAKE_OPTIONS = subdir-objects
 
-TESTS = \
+TEST_PROGS = \
        descriptive_holds_data.test \
        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 \
@@ -20,18 +21,37 @@ TESTS = \
        option_handles_void_value.test \
        option_should_match_exact_name.test \
        option_should_throw_exception_on_missing_value.test \
-       required_should_be_required.test
+       required_should_be_required.test \
+       multivalue_should_extract_arguments_by_separator.test \
+       multivalue_should_extract_options_by_separator.test
+
+TEST_SCRPTS = \
+       command/understand_void_option.test \
+       command/understand_bool_option.test
+
+TESTS = \
+       $(TEST_PROGS) \
+       $(TEST_SCRPTS)
 
-noinst_PROGRAMS = $(TESTS)
+EXTRA_DIST = \
+       $(TEST_SCRPTS)
+
+noinst_PROGRAMS = \
+       $(TEST_PROGS) \
+       command/option_test_command
 
 AM_CXXFLAGS = -I$(top_srcdir)/include -std=c++11
 
+check-% :      %.test all
+       @srcdir=$(srcdir); export srcdir;
+
 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
+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
@@ -51,3 +71,8 @@ option_should_match_exact_name_test_SOURCES  = option/should_match_exact_name.cp
 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
+
+command_option_test_command_SOURCES = command/src/option_test_command.cpp