invoker = new Invoker(); $this->receiver = new Receiver(); } public function testInvocation() { $this->invoker->setCommand(new HelloCommand($this->receiver)); $this->invoker->run(); $this->assertEquals($this->receiver->getOutput(), 'Hello World'); } }