/**
  * @covers Kunstmaan\FormBundle\Entity\FormSubmissionFieldTypes\TextFormSubmissionField::getDefaultAdminType
  */
 public function testGetDefaultAdminType()
 {
     $adminType = $this->object->getDefaultAdminType();
     $this->assertNotNull($adminType);
     $this->assertTrue($adminType instanceof TextFormSubmissionType);
 }