12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace Predis\Distribution;
- use \PHPUnit_Framework_TestCase as StandardTestCase;
- class EmptyRingExceptionTest extends StandardTestCase
- {
-
- public function testExceptionMessage()
- {
- $message = 'Empty Ring';
- $this->setExpectedException('Predis\Distribution\EmptyRingException', $message);
- throw new EmptyRingException($message);
- }
- }
|