public function testGetNotedDefinitions_WithDefinedNotes()
 {
     $definitions = array();
     $definitions[] = $this->object->define('NewComponent')->addNote('controller.load', 'resolve');
     $definitions[] = $this->object->define('AnoterLoader')->addNotes(array('controller.load' => 'resolve', 'another.load' => 'resolve_another'));
     $this->assertThat($this->object->getNotedDefinitions('controller.load'), $this->equalTo($definitions));
 }