Exemplo n.º 1
0
 /**
  * @expectedException \Hansel23\Dictionaries\Exceptions\InvalidDictionaryException
  */
 public function testIfMergingDifferentDictionariesThrowsException()
 {
     $dictionary = new Dictionary(gettype('teststring'), TestType::class);
     $anotherDictionary = new TestDictionary(gettype('teststring'), TestType::class);
     $dictionary->merge($anotherDictionary);
 }