From b7a00baaaae3294ef1da2cfee11d235881114ff9 Mon Sep 17 00:00:00 2001 From: Alex Renoki Date: Fri, 14 Aug 2020 20:26:55 +0300 Subject: [PATCH] wip incomplete tests --- tests/Channels/ChannelReplicationTest.php | 7 +++++++ tests/Channels/PrivateChannelReplicationTest.php | 7 +++++++ tests/HttpApi/FetchChannelsReplicationTest.php | 7 +++++++ tests/HttpApi/FetchUsersReplicationTest.php | 7 +++++++ 4 files changed, 28 insertions(+) diff --git a/tests/Channels/ChannelReplicationTest.php b/tests/Channels/ChannelReplicationTest.php index 4edf22a..364e74d 100644 --- a/tests/Channels/ChannelReplicationTest.php +++ b/tests/Channels/ChannelReplicationTest.php @@ -15,4 +15,11 @@ class ChannelReplicationTest extends TestCase $this->runOnlyOnRedisReplication(); } + + public function test_not_implemented() + { + $this->markTestIncomplete( + 'Not yet implemented tests.' + ); + } } diff --git a/tests/Channels/PrivateChannelReplicationTest.php b/tests/Channels/PrivateChannelReplicationTest.php index dfb08f3..bbc768c 100644 --- a/tests/Channels/PrivateChannelReplicationTest.php +++ b/tests/Channels/PrivateChannelReplicationTest.php @@ -15,4 +15,11 @@ class PrivateChannelReplicationTest extends TestCase $this->runOnlyOnRedisReplication(); } + + public function test_not_implemented() + { + $this->markTestIncomplete( + 'Not yet implemented tests.' + ); + } } diff --git a/tests/HttpApi/FetchChannelsReplicationTest.php b/tests/HttpApi/FetchChannelsReplicationTest.php index 8845eac..8dd09d6 100644 --- a/tests/HttpApi/FetchChannelsReplicationTest.php +++ b/tests/HttpApi/FetchChannelsReplicationTest.php @@ -15,4 +15,11 @@ class FetchChannelsReplicationTest extends TestCase $this->runOnlyOnRedisReplication(); } + + public function test_not_implemented() + { + $this->markTestIncomplete( + 'Not yet implemented tests.' + ); + } } diff --git a/tests/HttpApi/FetchUsersReplicationTest.php b/tests/HttpApi/FetchUsersReplicationTest.php index 0fbf484..def2b47 100644 --- a/tests/HttpApi/FetchUsersReplicationTest.php +++ b/tests/HttpApi/FetchUsersReplicationTest.php @@ -15,4 +15,11 @@ class FetchUsersReplicationTest extends TestCase $this->runOnlyOnRedisReplication(); } + + public function test_not_implemented() + { + $this->markTestIncomplete( + 'Not yet implemented tests.' + ); + } }