<?php
class Swift_Events_EventObjectTest extends \PHPUnit_Framework_TestCase
{
public function testEventSourceCanBeReturnedViaGetter()
{
$source = new stdClass();
$evt = $this->_createEvent($source);
$ref = $evt->getSource();
$this->assertEquals($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());
}
private function _createEvent($source)
{
return new Swift_Events_EventObject($source);
}
}
Anons79 File Manager Version 1.0, Coded By Anons79
Email: [email protected]