/**
  * @test
  */
 public function it_should_return_constructor_data()
 {
     $this->assertSame('url', $this->dojoEvent->getUrl());
     $this->assertSame('dojo', $this->dojoEvent->getName());
     $this->assertSame($this->dojo, $this->dojoEvent->getDojo());
     $this->assertNull($this->dojoEvent->getId());
     $this->assertSame(\DateTime::class, get_class($this->dojoEvent->getDate()));
 }