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