public function GenericEventTest::testGetArguments in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/event-dispatcher/Tests/GenericEventTest.php \Symfony\Component\EventDispatcher\Tests\GenericEventTest::testGetArguments()
Tests Event->getArgs().
File
- vendor/
symfony/ event-dispatcher/ Tests/ GenericEventTest.php, line 58
Class
- GenericEventTest
- Test class for Event.
Namespace
Symfony\Component\EventDispatcher\TestsCode
public function testGetArguments() {
// test getting all
$this
->assertSame(array(
'name' => 'Event',
), $this->event
->getArguments());
}