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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
|
2001-05-29 Steve M. Robbins <steve@nyongwa.montreal.qc.ca>
* include/cppunit/extensions/HelperMacros.h: Rework documentation.
(CU_TEST_SUITE): Move definition of member function suite() ...
(CU_TEST_SUITE_END): ... to here.
(CU_TEST): Use '&' to take address of member function
"testMethod".
* include/cppunit/extensions/AutoRegisterSuite.h: Declare "factory"
as a TestFactory*.
2001-05-28 Steve M. Robbins <steve@nyongwa.montreal.qc.ca>
* doc/other_documentation.dox: Don't include "CppUnit" in
anchor text, since Doxygen puts its own anchor around it.
* doc/Makefile.am (html/index.html): Depend on
other_documentation.dox.
* doc/Doxyfile.in (EXCLUDE): Move config.h and estring.h to
EXCLUDE_PATTERNS; they were not being excluded.
* ChangeLog: Reformat all entries to start with <TAB>. See
<http://www.red-bean.com/cvs2cl/changelogs.html> for change log
format.
* doc/cookbook.html: Update all code examples, except for TestRunner
section.
2001-05-23 Baptiste Lepilleur <gaiacrtn@free.fr>
* Updated CU_TEST_SUITE macro documentation. It is now stated
explicitly that you do not need to specify template parameter as
macro argument. The documentation example has been updated to
reflect that.
2001-05-23 Bastiaan Bakker <bastiaan.bakker@lifeline.nl>
* autogen.sh: added '--add-missing' option to automake.
* autogen.sh: added '--force' option to libtoolize and removed
'--copy'.
* config: removed generated files from CVS.
2001-05-20 Baptiste Lepilleur <gaiacrtn@free.fr>
* Fixed bug #424320 (VC++ TestRunner): access violation caused by
NULL pointer in history list. NULL pointer are not added to the
history anymore.
2001-05-19 Baptiste Lepilleur <gaiacrtn@free.fr>
* Added some items to the TODO list for VC++ TestRunner.
* "Debug" configuration is now the default configuration in VC++
project.
* Modified sort order in the test browser of VC++ TestRunner so
that tests are in the same order as in the suite. Suites are still
sorted alphabetically.
* Merged Steve M. Robbins patch to replace assertImplementation
with assert in hierarchy example.
* Added a TextTestRunner to runner tests. It is based on Michael
Feather's version, but have been rewriten.
* Removed traces that printed the test name in TextTestResult
while running.
* Added the test name to error and failure report in
TextTestResult.
* Updated hierarchy example to use TextTestRunner.
2001-05-18 Baptiste Lepilleur <gaiacrtn@free.fr>
* Symbol CU_USE_TYPEINFO must be defined instead of USE_TYPEINFO
to compile RTTI.
* Added back default constructor to TestSuiteBuilder which use
RTTI. It is available only if CU_USE_TYPEINFO is defined.
* Moved TypeInfoHelper.h from src/cppunit to
include/cppunit/extensions.
* Macro CU_TEST_SUITE in HelperMacros.h now use TestSuiteBuilder
default constructor if CU_USE_TYPEINFO is defined, otherwise it
use the type name given to the CU_TEST_SUITE macro.
* TestFactoryRegistry::registerFactory(factory) now generate a
dummy name based on a serial number instead of using RTTI. The
macro CU_TEST_SUITE_REGISTRATION and class AutoRegisterSuite can
now when CU_USE_TYPEINFO is not defined.
* Added a new Configuration named "Debug Without CU_USE_TYPEINFO"
to msvc6 projects. The flag CU_USE_TYPEINFO is not defined in that
configuration.
2001-05-17 Steve M. Robbins <steve@nyongwa.montreal.qc.ca>
* Makefile.am (dist-hook): Copy files relative to $(top_srcdir).
* doc/Makefile.am: Generated doc files depend on Doxyfile.
* doc/Doxyfile.in: Use autoconf substitutions in file names.
* examples/hierarchy/Makefile.am (check_PROGRAMS): Build hierarchy
with "make check", not "make all".
* examples/hierarchy/Makefile.am (INCLUDES):
* src/cppunit/Makefile.am (INCLUDES): Search in
$(top_srcdir)/include.
* Added .cvsignore files.
2001-05-16 Bastiaan Bakker <bastiaan.bakker@lifeline.nl>
* Merged Debian packaging support files by Christian Leutloff from
debian package version 1.5.4-2. Added make target 'debian' for
debian package creation.
2001-05-09 Bastiaan Bakker <bastiaan.bakker@lifeline.nl>
* Release as 1.5.5.
* Finished CppUnitW 1.2 merge. Removed RTTI depency from
TestSuite. Added TestCaller constructor for calling methods in
existing TestCases.
2001-04-29 Bastiaan Bakker <bastiaan.bakker@lifeline.nl>
* Merged Baptiste Lepilleurs CppUnitW 1.2. Some differences:
TypeInfo stuff (in TestSuite) compiled in only if USE_TYPEINFO is
set. TestSuite.getTests now returns a const ref instead of taking
a ref as parameter. Removed auto_ptr stuff from
TestFactoryRegistry: auto_ptr cannot be used in containers.
2001-04-28 Bastiaan Bakker <bastiaan.bakker@lifeline.nl>
* Merged MSVC++ specific TestRunner and example adapted from
Micheal Feathers version by Baptiste Lepilleur.
* Moved cppunit subdir into src.
2001-04-24 Bastiaan Bakker <bastiaan.bakker@lifeline.nl>
* Merged Baptiste Lepilleurs patch for TestRegistry: now TestCases
do not automatically register with the Registry anymore.
* Added extension headers from Micheal Feathers port to
include/cppunit/extensions.
2001-04-19 Bastiaan Bakker <bastiaan.bakker@lifeline.nl>
* Added MSVC++ workspace and project files, submitted by Baptiste
Lepilleur.
2001-04-15 Bastiaan Bakker <bastiaan.bakker@lifeline.nl>
* Moved public headers from cppunit into new subdir
include/cppunit. This should make more clear which headers are
used internally only (like estring.h).
* Moved autoconf auxiliary stuff into new subdir config, to make
the top dir less crowded.
* Prefixed std:: to cerr, cout and endl.
2001-04-14 Bastiaan Bakker <bastiaan.bakker@lifeline.nl>
* Release as 1.5.4
* Added support for RPM generation.
* Added autoconf support for Doxygen document generation: Doxygen
and GraphViz dot are automatically detected and LaTeX and HTML can
be switch on or off.
* cppunit/TextTestResult.cpp: changed cout to stream. Fixes bug
#232636
* cppunit/TextTestReulst.cpp: add '#include <iostream>'. Fixes
bug #223290
* cppunit/*.cpp: removed bogus 'inline' specifiers. Fixes bug
#224542 and #223291.
* doc/header.html: corrected link to CppUnit project page Fixes
bug #414073
* cppunit/*.cpp, examples/hierarchy/main.cpp: removed all 'using
namespace ...' occurences.
2001-01-31 Tim Jansen <timj@systembureau.com>
* cppunit/TestCase.cpp, cppunit/TestCase.h, cppunit/TestSuite.h,
cppunit/TestSuite.cpp: applied patch #402271 by bwithrow. Fixes
bug #220207
* cppunit/TestSuite.cpp (deleteContents): clear vector after
contents have been deleted (so there are no invalid pointers in
the vector) Patch #403540 / #403542
* cppunit/TestCaller.h: create Fixture with empty constructor so
that only the TestCaller but not the Fixture instance is
registered in the TestRegistry Patch #403541 / #403542
* examples/hierarchy/BoardGameTest.h,
examples/hierarchy/ChessTest.h, examples/hierarchy/main.cpp:
initialize example TestCases with TestSuite so that the
TestCallers are registered in the TestRegistry Patch
#403542. Fixes bug #415249
* cppunit/TestCaller.h, cppunit/TestCase.cpp, cppunit/TestCase.h:
changed documentation; made hopefully clearer which constructor
registers the instance in the TestRegistry; corrected syntax in
code example Patch #403542.
|