wip incomplete tests

This commit is contained in:
Alex Renoki 2020-08-14 20:26:55 +03:00
parent c543bbc910
commit b7a00baaaa
4 changed files with 28 additions and 0 deletions

View File

@ -15,4 +15,11 @@ class ChannelReplicationTest extends TestCase
$this->runOnlyOnRedisReplication();
}
public function test_not_implemented()
{
$this->markTestIncomplete(
'Not yet implemented tests.'
);
}
}

View File

@ -15,4 +15,11 @@ class PrivateChannelReplicationTest extends TestCase
$this->runOnlyOnRedisReplication();
}
public function test_not_implemented()
{
$this->markTestIncomplete(
'Not yet implemented tests.'
);
}
}

View File

@ -15,4 +15,11 @@ class FetchChannelsReplicationTest extends TestCase
$this->runOnlyOnRedisReplication();
}
public function test_not_implemented()
{
$this->markTestIncomplete(
'Not yet implemented tests.'
);
}
}

View File

@ -15,4 +15,11 @@ class FetchUsersReplicationTest extends TestCase
$this->runOnlyOnRedisReplication();
}
public function test_not_implemented()
{
$this->markTestIncomplete(
'Not yet implemented tests.'
);
}
}