calc/tests/General/LoadTest.php
2016-01-29 02:29:21 +01:00

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')));
}
}