From f3da42fce9ef669ee2599e1abea39f292ba89628 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Tue, 21 May 2019 07:20:31 +0100 Subject: [PATCH] Stub out some tests --- src/Speakers/tests/SpeakerTest.php | 33 ++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 src/Speakers/tests/SpeakerTest.php diff --git a/src/Speakers/tests/SpeakerTest.php b/src/Speakers/tests/SpeakerTest.php new file mode 100644 index 000000000..e13685c5d --- /dev/null +++ b/src/Speakers/tests/SpeakerTest.php @@ -0,0 +1,33 @@ +extension = new SpeakersExtension(); + } + + /** @test */ + public function get_sessions_for_a_speaker() + { + $this->markTestIncomplete(); + } + + /** @test */ + public function get_speakers_for_a_session() + { + $this->markTestIncomplete(); + } +}