diff --git a/tests/LogFakeTest.php b/tests/LogFakeTest.php index 430efff..5eaa2bc 100644 --- a/tests/LogFakeTest.php +++ b/tests/LogFakeTest.php @@ -579,4 +579,15 @@ public function testLoggedClosureWithNonBooleanReturn(): void return 1; }); } + + public function testDummyMethods(): void + { + $logFake = new LogFake(); + + $this->assertSame($logFake->getLogger(), $logFake); + $this->assertNull($logFake->listen()); + $this->assertNull($logFake->extend()); + $this->assertNull($logFake->getEventDispatcher()); + $this->assertNull($logFake->setEventDispatcher()); + } }