Timeframe: 730 days, Total Commits: 41 Total Number of Files Changed: 91
Date | Author | File/Message |
---|---|---|
2004-06-01 14:10:16 | Mike Clark | *** empty log message *** |
2004-02-11 04:12:58 | Erik Meade |
junit/runner/BaseTestRunner.java v 1.14 junit/swingui/MacProgressBar.java v 1.1 Fixes bug reported on Support Request 615265 swingui progress bar color on Mac OS X |
2003-12-25 01:51:34 | Erik Meade | Add org.apache.common.logging.* to excluded.properties. closes tracker 677417 |
2003-12-21 05:47:46 | Erik Meade | fix to follow coding convention |
2003-12-20 20:22:24 | Erik Meade | fix doc |
2003-12-20 18:30:46 | Erik Meade | assert to assertTrue |
2003-12-10 17:12:01 | Erik Meade | Fix cut-n-paste error for assertNotSame javadocs |
2003-05-25 21:03:28 | Mike Clark | Fixed broken link to "How To Ask Questions The Smart Way". |
2003-04-22 16:25:29 | Mike Clark | Added "How do I write a test for an abstract class?" |
2003-03-20 18:55:54 | Mike Clark | Added "How do I organize all test classes in a TestSuite automatically and not use or manage a TestSuite explicitly?" |
2003-02-28 22:13:37 | Mike Clark | Added "How do I get one test suite to invoke another?" |
2003-01-28 22:54:39 | Mike Clark | Added "Is there a basic template I can use to create a test?" |
2002-12-19 03:07:27 | Mike Clark | Added Eric Armstrong's submissions to the "Running Tests" section. Ain't that classpath just a bundle of joy? |
2002-11-13 14:36:55 | Mike Clark | Added "How do I pass command-line arguments to a test execution?" |
2002-09-02 22:22:45 | Eric Gamma |
junit/awtui/TestRunner.java v 1.14 junit/samples/money/MoneyBag.java v 1.4 removed some unused methods |
2002-09-01 15:31:53 | Kent Beck | Oops. Assertion tests can't use the standard format for exception tests because the exception to be thrown is AssertionFailedError and the exception that signals failure is also AssertionFailedError. |
2002-09-01 15:29:53 | Kent Beck |
junit/tests/framework/AssertTest.java v 1.9 Oops. Assertion tests can't use the standard format for exception tests because the exception to be thrown is AssertionFailedError and the exception that signals failure is also AssertionFailedError. |
2002-09-01 15:18:57 | Kent Beck | Reorganized the AssertTest, which had grown unwieldy. |
2002-08-31 22:29:14 | Eric Gamma | removed unused parameters/fields as detected by PMD |
2002-08-31 22:29:52 | Eric Gamma | fix for 602948 Swing UI: NoSuchMethodError on JDK 1.3 |
2002-08-31 22:28:57 | Eric Gamma |
junit/framework/Assert.java v 1.16 junit/swingui/CounterPanel.java v 1.8 removed unused parameters/fields as detected by PMD |
2002-08-31 22:26:01 | Eric Gamma | fixed incorrect testComparisonErrorMessage test |
2002-08-31 16:48:32 | Kent Beck | Factored out commonality between ComparisonFailure and Assert. There still looks to be more to do in Assert itself. |
2002-08-31 16:44:09 | Eric Gamma |
junit/runner/ReloadingTestSuiteLoader.java v 1.3 junit/runner/Version.java v 1.11 backed out calling setContextClassLoader on the test thread |
2002-08-31 12:47:58 | Erik Meade | Pointed Javadoc urls which are not include in the javadocs to the javadocs on JUnit.org. |
2002-08-31 10:59:44 | Eric Gamma | improved names of test methods |
2002-08-30 20:21:45 | Eric Gamma | fixing 601326 |
2002-08-24 00:22:07 | Eric Gamma | rolled back to @version@ |
2002-08-23 23:04:40 | Kent Beck | Put back abstract version number |
2002-08-23 18:43:51 | Eric Gamma |
doc/cookbook/cookbook.htm v 1.5 junit/framework/ComparisonFailure.java v 1.5 junit/framework/TestCase.java v 1.11 junit/runner/ReloadingTestSuiteLoader.java v 1.2 junit/runner/Version.java v 1.8 junit/swingui/CounterPanel.java v 1.7 3.8 clean-up |
2002-08-23 05:05:56 | Eric Gamma |
junit/runner/LoadingTestCollector.java v 1.3 junit/runner/Sorter.java v 1.3 junit/runner/TestCollector.java v 1.2 junit/samples/VectorTest.java v 1.4 junit/swingui/TestRunner.java v 1.14 junit/tests/AllTests.java v 1.6 junit/tests/extensions/RepeatedTestTest.java v 1.3 junit/tests/framework/AllTests.java v 1.3 junit/tests/framework/Failure.java v 1.3 junit/tests/framework/NoTestCaseClass.java v 1.3 junit/tests/framework/Success.java v 1.3 junit/tests/framework/SuiteTest.java v 1.4 junit/tests/framework/TestCaseTest.java v 1.4 junit/tests/runner/ClassLoaderTest.java v 1.2 junit/tests/runner/LoadedFromJar.java v 1.2 removed unused imports, variables |
2002-08-19 21:36:05 | Mike Clark | Added "Why does the "excluded.properties" trick not work when running JUnit's GUI from inside my favorite IDE?" Chalk another one up for that onery classpath. |
2002-07-25 01:22:54 | Mike Clark | Added "Why do I get a NoClassDefFoundError when trying to test JUnit or run the samples?" |
2002-06-27 19:20:52 | Mike Clark | Added "Do I need to write a TestCase class for every class I need to test?" |
2002-06-26 22:33:35 | Kent Beck | Fixed small comments |
2002-06-25 08:08:18 | Eric Gamma | moved the the comparison failure tests to the AssertTests |
2002-06-25 07:18:34 | Eric Gamma |
junit/framework/Assert.java v 1.14 overloaded assertEquals for Strings so that string prefix/suffix compression is only done when comparing Strings |
2002-06-25 07:05:58 | Eric Gamma | simplified string prefix/suffix computation |
2002-06-24 19:36:26 | Kent Beck | The problem is better solved by only using ComparisonFailure when comparing Strings. Once we have more experience of actual usage of ComparisonFailure, we can consider expanding it to comparisons of objects. |
2002-06-24 19:22:34 | Bladmir R. Bossicard | FailNoEquals: passing of null parameters |
2002-06-24 19:13:20 | Kent Beck | Fixed timing problem in TextFeedbackTest.testError() |