From 99927c55162beff1869f377e8ffb10dbf965303a Mon Sep 17 00:00:00 2001 From: Sean Leary Date: Tue, 7 Jul 2015 23:15:06 -0500 Subject: [PATCH] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index fda6f2e..b7be9be 100644 --- a/README.md +++ b/README.md @@ -8,19 +8,19 @@ https://github.com/douglascrockford/JSON-java
*These tests are a work in progress. Help from interested developers is welcome.*
More coverage is needed, but more importantly, improvements to test quality is needed.
-Eclipse is the recommended development environment. +Eclipse is the recommended development environment.
Run individual tests or JunitTestSuite using *EclEmma Coverage*, or execute the TestRunner application directly.
-You will need the following libraries for testing: +You will need the following libraries for testing:
Test harness: http://junit.org
* hamcrest-core-1.3.jar (for Junit) * junit-4.12.jar -Mockery: https://github.com/mockito/mockito +Mockery: https://github.com/mockito/mockito
* mockito-all-1.9.5.jar Coverage: http://www.eclemma.org/ (just install the latest in Eclipse)
-JSON-Java.jar (make this jar of the files to be tested yourself) +JSON-Java.jar (make this jar of the files to be tested yourself)
-*Conventions* +*Conventions*
Test filenames should consist of the name of the module being tested, with the suffix "Test". For example, Cookie.java is tested by CookieTest.java. When adding a new unit test, don't forget to update JunitTestSuite.java.