Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _docs/developer/testing/php_unit_tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ To run just an individual class or test, you can use the `--filter` flag on PHPU
For example, to run the function `testInvalidProperty` would be
`sudo -u submitty_php php vendor/bin/phpunit --filter testInvalidProperty` and running all
of `AccessControlTester` would be
`php vendor/bin/phpunit--filter AccessControlTester`. Be aware, filter
`php vendor/bin/phpunit --filter AccessControlTester`. Be aware, filter
can match against partial strings, so if you have two tests `testFoo` and `testFooBar`,
running `--filter testFoo` will run them both. Alternatively, you can also directly run
`phpunit` against a specific class by passing the path to the test class directly to
Expand Down
Loading