Passed
Branchdev (72a01c)
by Plamen
03:19
created
tests/TableTest.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     /**
30 30
      * @covers Table::prepare
31 31
      */
32
-    public function testprepare(){
32
+    public function testprepare() {
33 33
         var_dump(dirname(__DIR__));
34 34
         $this->assertSame(Table::$pageExt, null);
35 35
         //var_dump('passed');
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,8 @@
 block discarded – undo
29 29
     /**
30 30
      * @covers Table::prepare
31 31
      */
32
-    public function testprepare(){
32
+    public function testprepare()
33
+    {
33 34
         var_dump(dirname(__DIR__));
34 35
         $this->assertSame(Table::$pageExt, null);
35 36
         //var_dump('passed');
Please login to merge, or discard this patch.
tests/bootstrap.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 spl_autoload_register(function($class) { 
3
-    if($class !== 'PHPUnit_Framework_TestSuite.php') {
4
-        include dirname(__DIR__).'/'.$class.'.php'; 
3
+    if ($class !== 'PHPUnit_Framework_TestSuite.php') {
4
+        include dirname(__DIR__) . '/' . $class . '.php'; 
5 5
     }
6 6
 });
7 7
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-spl_autoload_register(function($class) { 
2
+spl_autoload_register(function($class) {
3 3
     if($class !== 'PHPUnit_Framework_TestSuite.php') {
4 4
         include dirname(__DIR__).'/'.$class.'.php'; 
5 5
     }
Please login to merge, or discard this patch.