1234567891011121314151617181920212223242526272829 |
- <?php
- namespace Predis\Cluster\Distributor;
- use PredisTestCase;
- class EmptyRingExceptionTest extends PredisTestCase
- {
-
- public function testExceptionMessage()
- {
- throw new EmptyRingException('Empty Ring');
- }
- }
|