_createEvent($source); $ref = $evt->getSource(); $this->assertReference($source, $ref); } public function testEventDoesNotHaveCancelledBubbleWhenNew() { $source = new stdClass(); $evt = $this->_createEvent($source); $this->assertFalse($evt->bubbleCancelled()); } public function testBubbleCanBeCancelledInEvent() { $source = new stdClass(); $evt = $this->_createEvent($source); $evt->cancelBubble(); $this->assertTrue($evt->bubbleCancelled()); } // -- Creation Methods private function _createEvent($source) { return new Swift_Events_EventObject($source); } }