source = $this->getMockBuilder(SourceInterface::class) ->getMockForAbstractClass(); $this->reader = new Reader([['class' => $this->source]]); } public function testRead() { $config = [ 'default' => [ 'general/locale/code'=> 'ru_RU', 'general/locale/timezone'=> 'America/Chicago', ] ]; $this->source->expects($this->once()) ->method('get') ->with(null) ->willReturn($config); $this->assertEquals($config, $this->reader->read()); } }