| 1 | <?php |
||
| 8 | class SignerTest extends AbstractTest |
||
| 9 | { |
||
| 10 | public function testImplementsSignerInterface() |
||
| 11 | { |
||
| 12 | $rc = new \ReflectionClass('Liip\ImagineBundle\Imagine\Cache\Signer'); |
||
| 13 | |||
| 14 | $this->assertTrue($rc->implementsInterface('Liip\ImagineBundle\Imagine\Cache\SignerInterface')); |
||
| 15 | } |
||
| 16 | |||
| 17 | public function testCouldBeConstructedWithSecret() |
||
| 21 | |||
| 22 | public function testShouldReturnShortHashOnSign() |
||
| 28 | |||
| 29 | public function testShouldSingAndSuccessfullyCheckPathWithoutRuntimeConfig() |
||
| 35 | |||
| 36 | public function testShouldSingAndSuccessfullyCheckPathWithRuntimeConfig() |
||
| 42 | |||
| 43 | public function testShouldConvertRecursivelyToStringAllRuntimeConfigParameters() |
||
| 63 | } |
||
| 64 |