All test method should have a void return type

This commit is contained in:
Oliver Davies 2020-12-17 23:14:49 +00:00
parent 8591a0f846
commit 280a381c68
4 changed files with 8 additions and 8 deletions

View file

@ -17,7 +17,7 @@ final class TalkRepositoryTest extends TalksTestBase {
private TalkRepository $talkRepository;
/** @test */
public function get_all_talks() {
public function get_all_talks(): void {
$this->createTalk(['title' => 'TDD - Test Driven Drupal']);
$this->createTalk(['title' => 'Taking Flight with Tailwind CSS']);
$this->createTalk(['title' => 'Upgrading to Drupal 9']);
@ -36,7 +36,7 @@ final class TalkRepositoryTest extends TalksTestBase {
}
/** @test */
public function get_all_published_talks() {
public function get_all_published_talks(): void {
$this->createTalk([
'title' => 'TDD - Test Driven Drupal',
'status' => NodeInterface::PUBLISHED,
@ -54,7 +54,7 @@ final class TalkRepositoryTest extends TalksTestBase {
}
/** @test */
public function it_only_returns_talk_nodes() {
public function it_only_returns_talk_nodes(): void {
$this->createNode(['type' => 'page']);
$talks = $this->talkRepository->getAll();