summaryrefslogtreecommitdiff
path: root/examples/cppunittest/Makefile.am
blob: 0ac94cf6e3cdfe3e492e99f25ad2dc7700b44825 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
EXTRA_DIST = CppUnitTestMain.dsw CppUnitTestMain.dsp CppUnitTestPlugIn.dsp CppUnitTestPlugIn.cpp

TESTS = cppunittestmain
check_PROGRAMS = $(TESTS)

AM_CPPFLAGS = -I$(top_builddir)/include -I$(top_srcdir)/include

cppunittestmain_SOURCES = \
	assertion_traitsTest.cpp \
	assertion_traitsTest.h \
	BaseTestCase.cpp \
	BaseTestCase.h \
	CoreSuite.h \
	CppUnitTestMain.cpp \
	CppUnitTestSuite.cpp \
	ExceptionTest.cpp \
	ExceptionTest.h \
  ExceptionTestCaseDecoratorTest.h \
  ExceptionTestCaseDecoratorTest.cpp \
	ExtensionSuite.h \
	FailureException.h \
	HelperMacrosTest.cpp \
	HelperMacrosTest.h \
	HelperSuite.h \
	MessageTest.h \
	MessageTest.cpp \
  MockFunctor.h \
  MockProtector.h \
	MockTestCase.h \
	MockTestCase.cpp \
	MockTestListener.cpp \
	MockTestListener.h \
	OrthodoxTest.cpp \
	OrthodoxTest.h \
	OutputSuite.h \
	RepeatedTestTest.cpp \
	RepeatedTestTest.h \
  StringToolsTest.h \
  StringToolsTest.cpp \
	SubclassedTestCase.cpp \
	SubclassedTestCase.h \
	SynchronizedTestResult.h \
	TestAssertTest.cpp \
	TestAssertTest.h \
	TestCallerTest.cpp \
	TestCallerTest.h \
	TestCaseTest.cpp \
	TestCaseTest.h \
	TestDecoratorTest.cpp \
	TestDecoratorTest.h \
	TestFailureTest.cpp \
	TestFailureTest.h \
	TestPathTest.h \
	TestPathTest.cpp \
	TestResultCollectorTest.cpp \
	TestResultCollectorTest.h \
	TestResultTest.cpp \
	TestResultTest.h \
	TestSetUpTest.cpp \
	TestSetUpTest.h \
	TestSuiteTest.cpp \
	TestSuiteTest.h \
	TestTest.cpp \
	TestTest.h \
  ToolsSuite.h \
	TrackedTestCase.cpp \
	TrackedTestCase.h \
	UnitTestToolSuite.h \
	XmlElementTest.h \
	XmlElementTest.cpp \
	XmlOutputterTest.h \
	XmlOutputterTest.cpp \
	XmlUniformiser.h \
	XmlUniformiser.cpp \
	XmlUniformiserTest.h \
	XmlUniformiserTest.cpp

cppunittestmain_LDADD= \
  $(top_builddir)/src/cppunit/libcppunit.la \
  $(LIBADD_DL)