Esempio n. 1
0
 /**
  * Test setAutoloadingStrategy method
  * receives argument of Exorg\Autoloader\IntrfaceAutoloadingStrategy iterface.
  */
 public function testSetAutoloadingStrategyReceivesCorrectArgument()
 {
     $autoloadingStrategyMock = $this->getMockBuilder('Exorg\\Autoloader\\AutoloadingStrategyInterface')->getMock();
     $this->autoloader->setAutoloadingStrategy($autoloadingStrategyMock);
 }