From 76c0cd97d003bb5db02b5532a313b10d9c6f1f2e Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 8 Sep 2021 23:36:38 +0100 Subject: [PATCH] refactor: Rename existing test methods --- tests/TalkExtensionTest.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/TalkExtensionTest.php b/tests/TalkExtensionTest.php index f73fa4ad..a01683ad 100644 --- a/tests/TalkExtensionTest.php +++ b/tests/TalkExtensionTest.php @@ -16,13 +16,13 @@ final class TalkExtensionTest extends TestCase } /** @test */ - public function it_returns_zero_if_there_are_no_talks(): void + public function should_return_zero_if_there_are_no_talks(): void { $this->assertSame(0, $this->subject->getPastTalkCount()); } /** @test */ - public function it_counts_a_single_event_from_a_single_talk(): void + public function should_count_a_single_event_from_a_single_talk(): void { $talks = [ [ @@ -39,7 +39,7 @@ final class TalkExtensionTest extends TestCase } /** @test */ - public function it_counts_multiple_events_from_a_single_talk(): void + public function should_count_multiple_events_from_a_single_talk(): void { $talks = [ [ @@ -59,7 +59,7 @@ final class TalkExtensionTest extends TestCase } /** @test */ - public function it_counts_multiple_events_from_multiple_talks(): void + public function should_count_multiple_events_from_multiple_talks(): void { $talks = [ [ @@ -84,7 +84,7 @@ final class TalkExtensionTest extends TestCase } /** @test */ - public function it_excludes_future_talks(): void + public function should_exclude_future_talks(): void { $talks = [ [