Файл: symfony-2.7/src/Symfony/Component/Serializer/Tests/Mapping/Loader/XmlFileLoaderTest.php
Строк: 45
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace SymfonyComponentSerializerTestsMappingLoader;
use SymfonyComponentSerializerMappingLoaderXmlFileLoader;
use SymfonyComponentSerializerMappingClassMetadata;
use SymfonyComponentSerializerTestsMappingTestClassMetadataFactory;
/**
* @author Kévin Dunglas <dunglas@gmail.com>
*/
class XmlFileLoaderTest extends PHPUnit_Framework_TestCase
{
private $loader;
private $metadata;
public function setUp()
{
$this->loader = new XmlFileLoader(__DIR__.'/../../Fixtures/serialization.xml');
$this->metadata = new ClassMetadata('SymfonyComponentSerializerTestsFixturesGroupDummy');
}
public function testLoadClassMetadataReturnsTrueIfSuccessful()
{
$this->assertTrue($this->loader->loadClassMetadata($this->metadata));
}
public function testLoadClassMetadata()
{
$this->loader->loadClassMetadata($this->metadata);
$this->assertEquals(TestClassMetadataFactory::createXmlCLassMetadata(), $this->metadata);
}
}