source = include 'config.php'; $this->config = new ArrayConfig($this->source); } public function testDependencyInjection() { $connection = new Connection($this->config); $connection->connect(); $this->assertEquals($this->source['host'], $connection->getHost()); } }