Completed
Push — master ( 4e532e...59ecf7 )
by Dan
02:41
created
Tests/Cache/NullStorageTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -14,19 +14,19 @@
 block discarded – undo
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
     
Please login to merge, or discard this patch.