Esempio n. 1
0
 public function testIfExceptionWhenAddingLoaderAfterFontsAreLoaded()
 {
     $this->setExpectedException('RuntimeException');
     $fontCollection = new FontCollection();
     $fontCollection->getFonts();
     $fontLoader = $this->getMockBuilder('Cmfcmf\\Module\\MediaModule\\Font\\FontLoaderInterface')->getMock();
     $fontCollection->addFontLoader($fontLoader);
 }