Lines Matching full:font
12 <b><font color="#00cc00">J</font><font color="#ff0000">U</font><font
14 3.8.2</font></b></h1>
16 <font color="#000000"><br>
18 </font>
20 <li><font color="#000000"><a href="#Summary%20of">Summary of Changes</a></font></li>
22 <font color="#000000"><a href="#Contents">Contents</a></font></li>
24 <font color="#000000"><a href="#Installation">Installation</a></font></li>
26 <font color="#000000"><a href="#Getting">Getting Started</a></font></li>
28 <font color="#000000"><a href="#Documentation">Documentation</a></font></li>
31 <font><a name="Summary of"></a><font color="#000000">Summary of Changes
32 between 3.8.1 and 3.8.2</font></font></h2>
33 <font color="#000000">The changes between the versions are minimal and
37 </font>
51 <li><font color="#000000">Running single tests.
52 junit.ui.TestRunner can be invoked with "-m</font> ClassName.testName"
59 <h3><font><font color="#000000">Closed Bugs/Patches and Enhancment
61 </font></font></h3>
103 <h2><font color="#000000">Summary of Changes between 3.8 and 3.8.1</font></h2>
105 <font color="#000000"> <li>Backed out setting the testing Thread's
120 </font>
123 <font color="#000000">Summary of Changes between 3.7 and 3.8</font></h2>
125 <font color="#000000">Framework</font></h3>
128 <font color="#000000">Made the string argument TestCase constructor
130 constructors of the form "FooTestCase(String name) { super(name); }".</font></li>
132 <font color="#000000">Deleted deprecated assert(boolean) in favor
136 to call assertTrue(boolean).</font></li>
138 <font color="#000000">Added assertFalse() to avoid the difficult of
140 condition).</font></li>
142 <font color="#000000">Added assertNotSame(Object, Object).</font></li>
144 <font color="#000000">Deleted deprecated TestCase.name() in favor
145 of TestCase.getName().</font></li>
147 <font color="#000000">Deleted deprecated package junit.ui in favor
148 of junit.awtui.</font></li>
151 <font color="#000000">Test Runner</font></h3>
154 <font color="#000000">When you compare two long strings with a
160 prefix and suffix are replaced with "...".</font></li>
162 <font color="#000000">Added initial version of a TestRunListener
164 eventually will replace TestListeners attached to the TestResult.</font></li>
166 <font color="#000000">Filled in ActiveTestSuite constructors.</font></li>
168 <font color="#000000">Added these packages to the
169 excluded.properties:<font size="2">
175 </font></font></li>
176 <li><font color="#000000">Extracted textual formatting of a
177 TestResult from junit.textui.TestRunner into ResultPrinter.</font></li>
179 <h3><font color="#000000">Documentation</font></h3>
181 <font color="#000000"> <li>Much improved <a href="doc/faq/faq.htm">FAQ</a>
183 </font>
185 <h3><font color="#000000">Closed Bugs</font></h3>
187 <font color="#000000"> <li><a
262 </font>
265 <font color="#000000">Summary of Changes between 3.6 and 3.7</font></h2>
267 <font color="#000000">GUI</font></h3>
270 <font color="#000000">Eliminated warning when re-running tests when
274 make much sense, and it was too obtrusive.</font></li>
276 <font color="#000000">Stopped reloading classes when running in
277 VisualAge for Java.</font></li>
279 <font color="#000000">Print total number of tests as well as number
281 only).</font></li>
284 <font color="#000000">Framework</font></h3>
287 <font color="#000000">Introduced Assert.assertTrue(boolean) and
293 and delete parentheses as the syntax is e.g. "assert 2 == 3".</font></li>
295 <font color="#000000">Added accessors for TestCase.fName and
296 TestSuite.fName.</font></li>
298 <font color="#000000">Added a no argument TestCase constructor to
299 support serialization.</font></li>
301 <font color="#000000">Improved warnings when constructing
302 TestSuites.</font></li>
305 <font color="#000000">Text Runner</font></h3>
308 <font color="#000000">Made doRun() public so clients can create a
310 output stream and then run tests.</font></li>
313 <font color="#000000">Fixed Bugs (SourceForge Bug Tracker Ids)</font></h3>
314 <font color="#000000"> [420315] No trace when fail
333 </font>
334 <h2><font color="#000000">Summary of Changes between 3.5 and 3.6</font></h2>
336 <font color="#000000">TestRunner</font></h3>
339 <font color="#000000">The UI test runners provide a check box to
343 class loader.</font></li>
345 <font color="#000000">Renames to address file name length
346 limitation on MacOS:</font></li>
349 <font color="#000000">LoadingClassPathTestCollector ->
350 LoadingTestCollector</font></li>
352 <font color="#000000">SimpleClassPathTestCollector ->
353 SimpleTestCollector</font></li>
357 <font color="#000000">Framework</font></h3>
360 <font color="#000000">Added TestSuite.getName()</font></li>
363 <font color="#000000">Builds</font></h3>
366 <font color="#000000">Updated the build script for Ant 1.3.</font></li>
369 <font color="#000000">Fixed Bugs (SourceForge Bug Tracker Ids)</font></h3>
370 <blockquote><font color="#000000">[ #229753 ] assertEquals on NaN and
394 [ #230745 ] ClassPathTestCollector sometimes lists classes in duplicate</font></blockquote>
396 <font color="#000000">Documentation</font></h3>
399 <font color="#000000">Added documentation about the <a
401 supported by TestRunners.</font></li>
403 <font color="#000000">Updated the FAQ</font></li>
406 <font color="#000000">Summary of Changes between 3.4 and 3.5</font></h2>
408 <font color="#000000">Framework</font></h3>
411 <font color="#000000">Added TestSuite.addTestSuite(Class testClass)</font></li>
412 <font color="#000000"><br>
425 was changed to addFailure(Test test, AssertionFailedError t)</font>
428 <font color="#000000">TestRunner</font></h3>
431 <font color="#000000">The Swing TestRunner provides an experimental
446 and the name of your TestCollector implementation class as the key:</font></li>
447 <font color="#000000"><br>
454 </font>
457 <font color="#000000">simple
460 Classes in JARs are not considered.</font></li>
462 <font color="#000000">loading
466 has a static <b>suite</b> method.</font></li>
468 <font color="#000000">By default the simple the test collector is
474 <b><font color="#ff0000">Notice</font></b>: that both TestCollectors
533 </font>
536 <font color="#000000">Tests</font></h3>
539 <font color="#000000">TextRunnerTest now only depends on a nonzero
541 termination.</font></li>
543 <font color="#000000">TextRunnerTest now also passes on JDK 1.1.*.
545 line argument instead of -cp.</font></li>
548 <font color="#000000">Documentation</font></h3>
551 <font color="#000000">Add an FAQ entry about what to do when the
553 distribution can't be found.</font></li>
556 <font color="#000000">Older Change Notes</font></h2>
558 <li><font color="#000000">Changes between <a
559 href="doc/changes34.html">2.1 and 3.4</a></font></li>
561 <font color="#000000">Changes between <a href="doc/changes21.html">1.0
562 and 2.1</a></font></li>
565 <font color="#000000"><a name="Contents"></a>Contents of the Release</font></h2>
603 <font color="#000000"><a name="Installation"></a>Installation</font></h2>
604 <font color="#000000">Below are the installation steps for installing
606 </font>
609 <font color="#000000">unzip the junit.zip file</font></li>
611 <font color="#000000">add<i> </i><b>junit.jar</b> to the
613 classpath=%classpath%;INSTALL_DIR\junit3\junit.jar</tt></font></li>
615 <font color="#000000">test the installation by using either the
618 pass OK.</font></li>
619 <font color="#000000"><br>
620 <b><font color="#ff0000">Notice</font></b>: that the tests are not
624 </font>
627 <font color="#000000">for the batch TestRunner type:</font></li>
628 <font color="#000000"><br>
638 junit.samples.AllTests</tt></font>
641 <font color="#000000"><b><font color="#ff0000">Important</font></b>:
645 </font>
646 <h2><font color="#000000"><a name="Getting"></a>Getting Started</font></h2>
647 <font color="#000000">To get started with unit testing and JUnit read
655 </font>
656 <p><font color="#000000">You find additional samples in the
658 </font></p>
661 <font color="#000000">SimpleTest.java - some simple test cases</font></li>
663 <font color="#000000">VectorTest.java - test cases for
664 java.util.Vector</font></li>
667 <font color="#000000"><a name="Documentation"></a>Documentation</font></h2>
668 <blockquote><font color="#000000"><a href="doc/cookbook/cookbook.htm">JUnit
697 JUnit.</font></blockquote>
699 <font color="#000000"><a name="Extending"></a>Extending JUnit</font></h2>
700 <font color="#000000">Examples of possible JUnit extensions can be
703 </font>
706 <font color="#000000"><a
710 decorators to extend test cases.</font></li>
712 <font color="#000000"><a
715 they are all terminated.</font></li>
717 <font color="#000000"><a
723 before the tests are run.</font></li>
725 <font color="#000000"><a
727 - A TestCase that expects a particular Exception to be thrown.</font></li>
730 <!--webbot bot="HTMLMarkup" startspan --><font color="#000000"><a
734 bot="HTMLMarkup" endspan --></font>