Exemple #1
0
 public function testSetEventPrototype()
 {
     $event = new MockEvent();
     $this->target->setEventPrototype($event);
     $this->assertAttributeEquals(get_class($event), 'eventClass', $this->target, 'Setting event class failed.');
     $this->assertAttributeSame($event, 'eventPrototype', $this->target, 'Setting event prototype object failed.');
 }