@@ -14,19 +14,19 @@ |
||
14 | 14 | $this->cacheStorage = new NullStorage(); |
15 | 15 | } |
16 | 16 | |
17 | - public function testHas(){ |
|
17 | + public function testHas() { |
|
18 | 18 | $this->assertEquals($this->cacheStorage->has('key', 'value'), null); |
19 | 19 | } |
20 | 20 | |
21 | - public function testSet(){ |
|
21 | + public function testSet() { |
|
22 | 22 | $this->assertEquals($this->cacheStorage->set('key', 'value', 10), null); |
23 | 23 | } |
24 | 24 | |
25 | - public function testGet(){ |
|
25 | + public function testGet() { |
|
26 | 26 | $this->assertEquals($this->cacheStorage->get('key'), null); |
27 | 27 | } |
28 | 28 | |
29 | - public function testDelete(){ |
|
29 | + public function testDelete() { |
|
30 | 30 | $this->assertEquals($this->cacheStorage->delete('key'), null); |
31 | 31 | } |
32 | 32 |