Many of our tests reside in the server/test directory and you can run your tests in that directory using the custom test runner interface or command line. The gradle command is:
gradlew :server:test:uiTests
We use uiTest instead of test because "test", by convention, refers to unit tests, which are run with each build. The "test" name is reserved for possible future development of more unit tests located in a more standard place. By default, this will bring up the UI for the test runner and allow you to choose which tests you want to run, with various other parameters. If you want to run a particular test or suite, you can specify properties on the command line. You use a -P flag to specify the property, not the -D flag previously used with the ant build. For example, to run the DRT tests, you would use the following command
gradlew :server:test:uiTests -Psuite=DRT
You can use the 'test' property to specify a comma-separated list of test classes
gradlew :server:test:uiTests -Ptest=BasicTest,IssuesTest
To run a particular test method or methods (annotated @Test) within a test class, append a dot-separated list of methods to the class that contains them.
gradlew :server:test:uiTests -Ptest=BasicTest.testCredits.testScripts,IssuesTest.emailTest
You can also specify properties using the server/test/test.properties file.
Gradle brings with it the ability to do very targeted builds and tasks, thus we have the ability to run the tests for a particular module without using the test runner project.
For any module that has its own test/src directory, there will be a uiTests task, so you can, for example, run only the tests for MS2 by using this command:
gradlew -PenableUiTests :server:modules:ms2:uiTests
It is still required that you have the :server:test project since that is the location of the "test.properties" file and the helper methods for running tests.
previousnext |
expand allcollapse all |