Example #1
0
 public function testSetDialect()
 {
     $sut = new Dfp_Datafeed_File_Reader();
     $mockDialect = $this->getMock('Dfp_Datafeed_File_Format_Dialect_Interface');
     $mockFormat = $this->getMock('Dfp_Datafeed_File_Reader_Format_Interface');
     $mockFormat->expects($this->once())->method('setDialect')->with($this->equalTo($mockDialect));
     $sut->setFormat($mockFormat);
     $sut->setDialect($mockDialect);
 }