PHP Classes

File: tests/Fakerino/Test/Configuration/ConfigurationFile/XmlConfigurationFileTest.php

Recommend this page to a friend!
  Classes of Nicola Pietroluongo   Fakerino   tests/Fakerino/Test/Configuration/ConfigurationFile/XmlConfigurationFileTest.php   Download  
File: tests/Fakerino/Test/Configuration/ConfigurationFile/XmlConfigurationFileTest.php
Role: Unit test script
Content type: text/plain
Description: Unit test script
Class: Fakerino
Generate fake names and other types of fake data
Author: By
Last change: Merge branch 'di-fix' into 0.8.1
Date: 8 years ago
Size: 854 bytes
 

Contents

Class file image Download
<?php
/**
 * This file is part of the Fakerino package.
 *
 * (c) Nicola Pietroluongo <nik.longstone@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Fakerino\Test\Configuration\ConfigurationFile;

use
Fakerino\Configuration\ConfigurationFile\XmlConfigurationFile;
use
Fakerino\DataSource\File\File;

class
XmlConfigurationFileTest extends \PHPUnit_Framework_TestCase
{
    public function
testXmlConfFile()
    {
       
$fileDir = __DIR__ . '/../../Fixtures/';
       
$xmlFilePath = $fileDir . 'file.xml';
       
$xmlFile = new File($xmlFilePath);
       
$xmlConf = new XmlConfigurationFile($xmlFile);
       
$result = $xmlConf->toArray();

       
$this->assertInternalType('array', $result);
       
$this->assertNotEmpty($result);
    }
}