* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Predis\Cluster\Distribution; use PredisTestCase; /** * @todo Not really useful right now. */ class EmptyRingExceptionTest extends PredisTestCase { /** * @group disconnected */ public function testExceptionMessage() { $message = 'Empty Ring'; $this->setExpectedException('Predis\Cluster\Distribution\EmptyRingException', $message); throw new EmptyRingException($message); } }