Tweak code block in README

This commit is contained in:
Ben Thomson 2020-02-03 12:24:24 +08:00 committed by GitHub
parent 65c3a88179
commit bb7df3cb61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -196,6 +196,7 @@ public function tearDown(): void
> **Note:** If your plugin uses [configuration files](../plugin/settings#file-configuration), then you will need to run `System\Classes\PluginManager::instance()->registerAll(true);` in the `setUp` method of your tests.<br><br>Below is an example of a base test case class that should be used if you need to test your plugin working with other plugins instead of in isolation.
use System\Classes\PluginManager;
use October\Core\Tests\PluginTestCase;
class BaseTestCase extends PluginTestCase
{