Ejemplo n.º 1
0
 /**
  * @test
  */
 public function takesAndReturnsCustomWritableDictionaryInstance()
 {
     $d = new Dictionary();
     $d->addWord("Word");
     $d->addSentence("<4>!");
     $this->p->setDictionary($d);
     $this->assertEquals($d, $this->p->getDictionary());
 }