Passed
Push — master ( 5da465...f9b6f0 )
by Gaetano
03:44
created
tests/1ParsingBugsTest.php 1 patch
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,14 +21,16 @@
 block discarded – undo
21 21
     protected function set_up()
22 22
     {
23 23
         $this->args = argParser::getArgs();
24
-        if ($this->args['DEBUG'] == 1)
25
-            ob_start();
24
+        if ($this->args['DEBUG'] == 1) {
25
+                    ob_start();
26
+        }
26 27
     }
27 28
 
28 29
     protected function tear_down()
29 30
     {
30
-        if ($this->args['DEBUG'] != 1)
31
-            return;
31
+        if ($this->args['DEBUG'] != 1) {
32
+                    return;
33
+        }
32 34
         $out = ob_get_clean();
33 35
         $status = $this->getStatus();
34 36
         if ($status == BaseTestRunner::STATUS_ERROR
Please login to merge, or discard this patch.
tests/3LocalhostTest.php 1 patch
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -107,14 +107,16 @@
 block discarded – undo
107 107
 
108 108
         $this->coverageScriptUrl = 'http://' . $this->args['HTTPSERVER'] . '/' . str_replace( '/demo/server/server.php', 'tests/phpunit_coverage.php', $this->args['HTTPURI'] );
109 109
 
110
-        if ($this->args['DEBUG'] == 1)
111
-            ob_start();
110
+        if ($this->args['DEBUG'] == 1) {
111
+                    ob_start();
112
+        }
112 113
     }
113 114
 
114 115
     protected function tear_down()
115 116
     {
116
-        if ($this->args['DEBUG'] != 1)
117
-            return;
117
+        if ($this->args['DEBUG'] != 1) {
118
+                    return;
119
+        }
118 120
         $out = ob_get_clean();
119 121
         $status = $this->getStatus();
120 122
         if ($status == BaseTestRunner::STATUS_ERROR
Please login to merge, or discard this patch.
tests/2InvalidHostTest.php 1 patch
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -24,14 +24,16 @@
 block discarded – undo
24 24
         $this->client = new xmlrpc_client('/NOTEXIST.php', $this->args['HTTPSERVER'], 80);
25 25
         $this->client->setDebug($this->args['DEBUG']);
26 26
 
27
-        if ($this->args['DEBUG'] == 1)
28
-            ob_start();
27
+        if ($this->args['DEBUG'] == 1) {
28
+                    ob_start();
29
+        }
29 30
     }
30 31
 
31 32
     protected function tear_down()
32 33
     {
33
-        if ($this->args['DEBUG'] != 1)
34
-            return;
34
+        if ($this->args['DEBUG'] != 1) {
35
+                    return;
36
+        }
35 37
         $out = ob_get_clean();
36 38
         $status = $this->getStatus();
37 39
         if ($status == BaseTestRunner::STATUS_ERROR
Please login to merge, or discard this patch.