diff --git a/templates/crud/test/Test.EntityManager.tpl.php b/templates/crud/test/Test.EntityManager.tpl.php index 288c2093a..1225c0ea4 100644 --- a/templates/crud/test/Test.EntityManager.tpl.php +++ b/templates/crud/test/Test.EntityManager.tpl.php @@ -40,7 +40,6 @@ public function testIndex(): void public function testNew(): void { - $this->markTestIncomplete(); $this->client->request('GET', sprintf('%snew', $this->path)); self::assertResponseStatusCodeSame(200); @@ -54,11 +53,12 @@ public function testNew(): void self::assertResponseRedirects(''); self::assertSame(1, $this->Repository->count([])); + + $this->markTestIncomplete('This test was generated'); } public function testShow(): void { - $this->markTestIncomplete(); $fixture = new (); $typeOptions): ?> $fixture->set('My Title'); @@ -73,11 +73,11 @@ public function testShow(): void self::assertPageTitleContains(''); // Use assertions to check that the properties are properly displayed. + $this->markTestIncomplete('This test was generated'); } public function testEdit(): void { - $this->markTestIncomplete(); $fixture = new (); $typeOptions): ?> $fixture->set('Value'); @@ -101,11 +101,12 @@ public function testEdit(): void $typeOptions): ?> self::assertSame('Something New', $fixture[0]->get()); + + $this->markTestIncomplete('This test was generated'); } public function testRemove(): void { - $this->markTestIncomplete(); $fixture = new (); $typeOptions): ?> $fixture->set('Value'); @@ -119,5 +120,7 @@ public function testRemove(): void self::assertResponseRedirects(''); self::assertSame(0, $this->Repository->count([])); + + $this->markTestIncomplete('This test was generated'); } }