We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 22bf430 commit 064b8b0Copy full SHA for 064b8b0
tests/system/Test/FilterTestTraitTest.php
@@ -73,6 +73,14 @@ public function testCallerSupportArray(): void
73
$this->assertSame('http://hellowworld.com', $result->getBody());
74
}
75
76
+ public function testCallerSupportClassname(): void
77
+ {
78
+ $caller = $this->getFilterCaller(Customfilter::class, 'before');
79
+ $result = $caller();
80
+
81
+ $this->assertSame('http://hellowworld.com', $result->getBody());
82
+ }
83
84
public function testCallerUsesClonedInstance(): void
85
{
86
$caller = $this->getFilterCaller('test-customfilter', 'before');
0 commit comments