14 lines
340 B
PHP
14 lines
340 B
PHP
<?php
|
|
namespace PSC\Library\Calc\Tests\General;
|
|
|
|
use PSC\Library\Calc\Engine;
|
|
|
|
class LoadTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
public function testSimpleLoadXmlFromString()
|
|
{
|
|
$parser = new Engine();
|
|
$this->assertTrue($parser->loadString(file_get_contents(__DIR__ .'/../TestFiles/General/simple.xml')));
|
|
}
|
|
|
|
} |