From bb7df3cb619c9bbc699fdc59deb575f3657609b4 Mon Sep 17 00:00:00 2001 From: Ben Thomson Date: Mon, 3 Feb 2020 12:24:24 +0800 Subject: [PATCH] Tweak code block in README --- tests/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/README.md b/tests/README.md index 9960ba0c6..fb8a002c5 100644 --- a/tests/README.md +++ b/tests/README.md @@ -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.

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 {