/**
  * Test content type versionnning
  */
 public function testFormController()
 {
     $contentTypes = $this->contentTypeRepository->findAll();
     $contentTypeCount = count($contentTypes);
     $crawler = $this->client->request('GET', '/admin/content-type/form/news');
     $form = $crawler->selectButton('Save')->form();
     $this->submitForm($form);
     $contentTypes = $this->contentTypeRepository->findAll();
     $this->assertCount($contentTypeCount + 1, $contentTypes);
 }