Completed
Push — master ( 439bd6...809810 )
by Thiago Augustus de
02:11
created

Tests/NoSpaceTest.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
class NoSpaceTest extends PHPUnit_Framework_TestCase
4
{
5
6
    testNoXMLSpace() {
0 ignored issues
show
This code did not parse for me. Apparently, there is an error somewhere around this line:

Syntax error, unexpected T_STRING, expecting T_FUNCTION
Loading history...
7
        $xml = simplexml_load_file( $xml_file );
8
        $xml = NoXMLSpace::noSpace($xml);
9
        
10
        $this->assertEquals('Hello World', $xml->message);
11
    }
12
  
13
}
14