createMock(OperatingSystem::class); $os->method('getName') ->will($this->returnValue('Linux')); $bios = $this->createMock(Bios::class); $bios->method('launch') ->with($os); /** @noinspection PhpParamsInspection */ $facade = new Facade($bios, $os); $facade->turnOn(); $this->assertSame('Linux', $os->getName()); } }