| 1 | <?php |
||
| 23 | abstract class VersionStoreTestCase extends TestCase |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * @return VersionStoreInterface |
||
| 27 | */ |
||
| 28 | abstract protected function createStore(); |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Test persist method. |
||
| 32 | */ |
||
| 33 | public function testPersist() |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Test load method. |
||
| 46 | */ |
||
| 47 | public function testLoad() |
||
| 56 | } |
||
| 57 |