expectOutputString(null); // no output $service->doSomething(); } public function testStandardLogger() { $service = new Service(new PrintLogger()); $this->expectOutputString('We are in DesignPatterns\NullObject\Service::doSomething'); $service->doSomething(); } }