From 6b8931ef5f3329f782809f47f21c7fc51031a3aa Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 13 Feb 2019 23:28:49 +0000 Subject: [PATCH] Add some more empty tests --- tests/Service/PickerTest.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/tests/Service/PickerTest.php b/tests/Service/PickerTest.php index 43c13a7..9c9da46 100644 --- a/tests/Service/PickerTest.php +++ b/tests/Service/PickerTest.php @@ -36,4 +36,22 @@ class PickerTest extends TestCase $this->assertInstanceOf(Collection::class, $hosts); $this->assertCount(5, $hosts); } + + /** @test */ + public function comments_for_multiple_events_are_flattened_and_combined() + { + $this->markTestIncomplete(); + } + + /** @test */ + public function comments_from_event_hosts_cannot_be_picked() + { + $this->markTestIncomplete(); + } + + /** @test */ + public function a_winner_can_be_selected() + { + $this->markTestIncomplete(); + } }