From 953f8d807cb25965204ecbd698e9692ff4f299d1 Mon Sep 17 00:00:00 2001 From: Alex Tusa <41128169+atusa17@users.noreply.github.com> Date: Mon, 4 Mar 2019 18:01:24 -0700 Subject: [PATCH] Update README.md --- README.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 43c138b..9141861 100644 --- a/README.md +++ b/README.md @@ -15,19 +15,22 @@ 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 +38,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