Test Failed
Pull Request — master (#26)
by Christopher
02:32
created
tests/unit/xsYearMonthDurationTest.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     }
33 33
 
34 34
     /**
35
-         * @dataProvider testXsYearMonthDurationValidDataProvider
35
+     * @dataProvider testXsYearMonthDurationValidDataProvider
36 36
      */
37 37
     public function testXsYearMonthDurationValid($duration, $message) {
38 38
         $d = new xsYearMonthDuration($duration);
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     public function testXsYearMonthDurationValid($duration, $message) {
33 33
         $d = new xsYearMonthDuration($duration);
34 34
         $e = (string)$d;
35
-        $this->assertEquals($duration,$e,$message);
35
+        $this->assertEquals($duration, $e, $message);
36 36
 
37 37
     }
38 38
 
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
             $d = new xsYearMonthDuration($duration);
53 53
             $e = (string)$d;
54 54
             $this->fail($message);
55
-            $this->assertEquals('',$e,$message);
55
+            $this->assertEquals('', $e, $message);
56 56
     }
57 57
 
58 58
     public function testXsYearMonthDurationInvalidDataProvider() {
Please login to merge, or discard this patch.
tests/unit/xsUnsignedShortTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     public function testxsUnsignedShortTestValid($duration, $message) {
33 33
         $d = new xsUnsignedShort($duration);
34 34
         $e = (string)$d;
35
-        $this->assertEquals($duration,$e,$message);
35
+        $this->assertEquals($duration, $e, $message);
36 36
 
37 37
     }
38 38
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     public function testxsUnsignedShortTestInvalid($duration, $message) {
50 50
             $d = new xsUnsignedShort($duration);
51 51
             $e = (string)$d;
52
-            $this->assertEquals('',$e,$message);
52
+            $this->assertEquals('', $e, $message);
53 53
     }
54 54
 
55 55
     public function testxsUnsignedShortTestInvalidDataProvider() {
Please login to merge, or discard this patch.
tests/unit/xsQNameTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     public function testxsQNameTestValid($duration, $message) {
33 33
         $d = new xsQName($duration);
34 34
         $e = (string)$d;
35
-        $this->assertEquals($duration,$e,$message);
35
+        $this->assertEquals($duration, $e, $message);
36 36
 
37 37
     }
38 38
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
             $d = new xsQName($duration);
50 50
             $e = (string)$d;
51 51
             $this->fail($message);
52
-            $this->assertEquals('',$e,$message);
52
+            $this->assertEquals('', $e, $message);
53 53
     }
54 54
 
55 55
     public function testxsQNameTestInvalidDataProvider() {
Please login to merge, or discard this patch.
tests/unit/xsTokenTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     public function testxsTokenTestValid($duration, $message) {
33 33
         $d = new xsToken($duration);
34 34
         $e = (string)$d;
35
-        $this->assertEquals($duration,$e,$message);
35
+        $this->assertEquals($duration, $e, $message);
36 36
 
37 37
     }
38 38
 
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     public function testxsTokenTestInvalid($duration, $message) {
56 56
             $d = new xsToken($duration);
57 57
             $e = (string)$d;
58
-            $this->assertEquals('',$e,$message);
58
+            $this->assertEquals('', $e, $message);
59 59
 
60 60
     }
61 61
 
Please login to merge, or discard this patch.
tests/unit/xsNormalizedStringTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     public function testxsNormalizedStringTestValid($duration, $message) {
33 33
         $d = new xsNormalizedString($duration);
34 34
         $e = (string)$d;
35
-        $this->assertEquals($duration,$e,$message);
35
+        $this->assertEquals($duration, $e, $message);
36 36
 
37 37
     }
38 38
 
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     public function testxsNormalizedStringTestInvalid($duration, $message) {
56 56
             $d = new xsNormalizedString($duration);
57 57
             $e = (string)$d;
58
-            $this->assertEquals('',$e,$message);
58
+            $this->assertEquals('', $e, $message);
59 59
     }
60 60
 
61 61
     public function testxsNormalizedStringTestInvalidDataProvider() {
Please login to merge, or discard this patch.
tests/unit/xsUnsignedIntTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     public function testxsUnsignedIntTestValid($duration, $message) {
33 33
         $d = new xsUnsignedInt($duration);
34 34
         $e = (string)$d;
35
-        $this->assertEquals($duration,$e,$message);
35
+        $this->assertEquals($duration, $e, $message);
36 36
 
37 37
     }
38 38
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     public function testxsUnsignedIntTestInvalid($duration, $message) {
50 50
             $d = new xsUnsignedInt($duration);
51 51
             $e = (string)$d;
52
-            $this->assertEquals('',$e,$message);
52
+            $this->assertEquals('', $e, $message);
53 53
 
54 54
     }
55 55
 
Please login to merge, or discard this patch.
tests/unit/xsNonPositiveIntegerTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     public function testxsNonPositiveIntegerTestValid($duration, $message) {
33 33
         $d = new xsNonPositiveInteger($duration);
34 34
         $e = (string)$d;
35
-        $this->assertEquals($duration,$e,$message);
35
+        $this->assertEquals($duration, $e, $message);
36 36
 
37 37
     }
38 38
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     public function testxsNonPositiveIntegerTestInvalid($duration, $message) {
50 50
             $d = new xsNonPositiveInteger($duration);
51 51
             $e = (string)$d;
52
-            $this->assertEquals('',$e,$message);
52
+            $this->assertEquals('', $e, $message);
53 53
 
54 54
     }
55 55
 
Please login to merge, or discard this patch.
tests/unit/xsUnsignedLongTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     public function testxsUnsignedLongTestValid($duration, $message) {
33 33
         $d = new xsUnsignedLong($duration);
34 34
         $e = (string)$d;
35
-        $this->assertEquals($duration,$e,$message);
35
+        $this->assertEquals($duration, $e, $message);
36 36
 
37 37
     }
38 38
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     public function testxsUnsignedLongTestInvalid($duration, $message) {
50 50
             $d = new xsUnsignedLong($duration);
51 51
             $e = (string)$d;
52
-        $this->assertEquals('',$e,$message);
52
+        $this->assertEquals('', $e, $message);
53 53
     }
54 54
 
55 55
     public function testxsUnsignedLongTestInvalidDataProvider() {
Please login to merge, or discard this patch.
tests/unit/xsNonNegativeIntegerTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     public function testxsNonNegativeIntegerTestValid($duration, $message) {
33 33
         $d = new xsNonNegativeInteger($duration);
34 34
         $e = (string)$d;
35
-        $this->assertEquals($duration,$e,$message);
35
+        $this->assertEquals($duration, $e, $message);
36 36
 
37 37
     }
38 38
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     public function testxsNonNegativeIntegerTestInvalid($duration, $message) {
50 50
             $d = new xsNonNegativeInteger($duration);
51 51
             $e = (string)$d;
52
-            $this->assertEquals('',$e,$message);
52
+            $this->assertEquals('', $e, $message);
53 53
 
54 54
     }
55 55
 
Please login to merge, or discard this patch.