Example #1
0
 public function testGetDialect()
 {
     $sut = new Dfp_Datafeed_File_Reader();
     $mockFormat = $this->getMock('Dfp_Datafeed_File_Reader_Format_Interface');
     $mockFormat->expects($this->once())->method('getDialect')->will($this->returnValue('dialect'));
     $sut->setFormat($mockFormat);
     $this->assertEquals('dialect', $sut->getDialect());
 }