reader = $this->getMockBuilder(Reader::class) ->disableOriginalConstructor() ->getMock(); $this->source = new ModularConfigSource($this->reader); } public function testGet() { $this->reader->expects($this->once()) ->method('read') ->willReturn(['data' => ['path' => 'value']]); $this->assertEquals('value', $this->source->get('path')); } }