public function testAddNotes()
 {
     $this->object->setNotes(array('first' => 'to overwrite', 'second' => 'stay'));
     $this->object->addNotes(array('new' => 'is great', 'first' => '1'));
     $this->assertThat($this->object->getNotes(), $this->equalTo(array('first' => '1', 'second' => 'stay', 'new' => 'is great')));
 }