aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/Widget/HelpindexTest.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2024-11-03 11:57:45 +0100
committerMario Vavti <mario@mariovavti.com>2024-11-03 11:57:45 +0100
commit21b60bf119a3d070e385c1011f4c3ccb9951f23c (patch)
tree43d78d9a1ae07cb5add65b04f23a79e722fc26bc /tests/unit/Widget/HelpindexTest.php
parentd25314c75b0941b91f73eb39cba489ec6b48c301 (diff)
parent5db3f93be9e9777184609a7f7e6988d36dfc5615 (diff)
downloadvolse-hubzilla-21b60bf119a3d070e385c1011f4c3ccb9951f23c.tar.gz
volse-hubzilla-21b60bf119a3d070e385c1011f4c3ccb9951f23c.tar.bz2
volse-hubzilla-21b60bf119a3d070e385c1011f4c3ccb9951f23c.zip
Merge branch 'dev' into containers
Diffstat (limited to 'tests/unit/Widget/HelpindexTest.php')
-rw-r--r--tests/unit/Widget/HelpindexTest.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/unit/Widget/HelpindexTest.php b/tests/unit/Widget/HelpindexTest.php
index 26aa34104..87042c559 100644
--- a/tests/unit/Widget/HelpindexTest.php
+++ b/tests/unit/Widget/HelpindexTest.php
@@ -8,6 +8,8 @@
* SPDX-License-Identifier: MIT
*/
+use PHPUnit\Framework\Attributes\Before;
+
/**
* Test class for testing the Helpindex widget.
*/
@@ -15,6 +17,8 @@ class HelpindexTest extends \Zotlabs\Tests\Unit\Module\TestCase {
use \phpmock\phpunit\PHPMock;
+ private string $output;
+
/**
* Define the stubs to make sure they work later in the test.
*
@@ -27,6 +31,12 @@ class HelpindexTest extends \Zotlabs\Tests\Unit\Module\TestCase {
self::defineFunctionMock('Zotlabs\Widget', 'file_get_contents');
}
+ #[Before]
+ public function setup_state(): void {
+ // Make sure the output is cleared before running the test
+ $this->output = '';
+ }
+
public function test_loading_toc(): void {
// Stub `file_get_contents` to plant our own content.
$fgc_stub = $this->getFunctionMock('Zotlabs\Widget', 'file_get_contents');