[EventDispatcher] Remove template method in test case

This commit is contained in:
Samuel NELA 2018-10-04 20:06:57 +02:00
parent 5d6473bd94
commit 545a8eef05
1 changed files with 0 additions and 4 deletions

View File

@ -31,8 +31,6 @@ class GenericEventTest extends TestCase
*/
protected function setUp()
{
parent::setUp();
$this->subject = new \stdClass();
$this->event = new GenericEvent($this->subject, array('name' => 'Event'));
}
@ -44,8 +42,6 @@ class GenericEventTest extends TestCase
{
$this->subject = null;
$this->event = null;
parent::tearDown();
}
public function testConstruct()