From b154648fdfb759a334c27f321a206e93adb94e99 Mon Sep 17 00:00:00 2001 From: Alex Tusa <41128169+atusa17@users.noreply.github.com> Date: Mon, 4 Mar 2019 17:59:00 -0700 Subject: [PATCH] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 34d5ce3..43c138b 100644 --- a/README.md +++ b/README.md @@ -15,19 +15,19 @@ This project contains several different modules for different parts of the syste This project is unit tested with JUnit and Mockito. You can run the unit tests with IntelliJ or Gradle. To run them with IntelliJ, browse to any `*Test.java` file and use IntelliJ's built-in test runner to run or debug the test. To run all the unit tests with Gradle: * On a Linux or Macintosh machine: - $ ./gradlew test + $ ./gradlew test * On a Windows machine: - $ gradlew.bat test + $ gradlew.bat test You can also test modules individually: * On a Linux or Macintosh machine: - $ ./gradlew persistence:test + $ ./gradlew persistence:test * On a Windows machine: - $ gradlew.bat persistence:test + $ gradlew.bat persistence:test ## Integration Tests @@ -35,11 +35,11 @@ To run the integration tests with IntelliJ, browse to any `*Test.java` file resi * On a Linux or Macintosh machine: - $ ./gradlew integrationTest + $ ./gradlew integrationTest * On a Windows machine - $ gradlew.bat integrationTest + $ gradlew.bat integrationTest ## Built with