Add Argument 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         parameter_is_descriptive.test \
7         argument_handles_string_value.test
8
9 noinst_PROGRAMS = $(TESTS)
10
11 AM_CXXFLAGS = -O3 -I$(top_srcdir)/include -std=c++11
12
13 descriptive_holds_data_test_SOURCES  = descriptive/holds_data.cpp
14 callable_invokes_provided_function_test_SOURCES  = callable/invokes_provided_function.cpp
15 parameter_is_descriptive_test_SOURCES  = parameter/is_descriptive.cpp
16 argument_handles_string_value_test_SOURCES  = argument/handles_string_value.cpp