move console sample's interactive tests to two different CppUnit testsuites: InteractiveInputTestCase which requires user input and InteractiveOutputTestCase which outputs stuff to be checked from the user.
Leave in the console sample only a barebone console application (i.e. a real example). Closes #11960 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@64679 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -55,6 +55,8 @@ TEST_OBJECTS = \
|
||||
$(OBJS)\test_formatconvertertest.o \
|
||||
$(OBJS)\test_fswatchertest.o \
|
||||
$(OBJS)\test_hashes.o \
|
||||
$(OBJS)\test_output.o \
|
||||
$(OBJS)\test_input.o \
|
||||
$(OBJS)\test_intltest.o \
|
||||
$(OBJS)\test_lists.o \
|
||||
$(OBJS)\test_logtest.o \
|
||||
@@ -464,6 +466,12 @@ $(OBJS)\test_fswatchertest.o: ./fswatcher/fswatchertest.cpp
|
||||
$(OBJS)\test_hashes.o: ./hashes/hashes.cpp
|
||||
$(CXX) -c -o $@ $(TEST_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
$(OBJS)\test_output.o: ./interactive/output.cpp
|
||||
$(CXX) -c -o $@ $(TEST_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
$(OBJS)\test_input.o: ./interactive/input.cpp
|
||||
$(CXX) -c -o $@ $(TEST_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
$(OBJS)\test_intltest.o: ./intl/intltest.cpp
|
||||
$(CXX) -c -o $@ $(TEST_CXXFLAGS) $(CPPDEPS) $<
|
||||
|
||||
|
Reference in New Issue
Block a user