From 80a18243dd419db258e3f97a91e1cdada54e4cf0 Mon Sep 17 00:00:00 2001 From: Charles Allen Date: Tue, 14 Jul 2015 17:01:06 -0700 Subject: [PATCH] Minor change to integration-tests README formatting --- integration-tests/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/integration-tests/README.md b/integration-tests/README.md index abeae63a0aa..261f5908430 100644 --- a/integration-tests/README.md +++ b/integration-tests/README.md @@ -34,14 +34,14 @@ Running Integration tests ## Running tests using mvn To run all the tests using mvn run the following command - -''''' +``` mvn verify -P integration-tests -''''' +``` To run only a single test using mvn run following command - -''''' +``` mvn verify -P integration-tests -Dit.test= -''''' +``` Writing a New Test @@ -66,9 +66,9 @@ A test can access different helper and utility classes provided by test-framewor To mark a test be able to use Guice Dependency Injection - Annotate the test class with the below annotation - ''''''' +``` @Guice(moduleFactory = DruidTestModuleFactory.class) - ''''''' +``` This will tell the test framework that the test class needs to be constructed using guice. ### Helper Classes provided