PHP Classes

File: tests/Fakerino/Test/Configuration/FakerinoConfTest.php

Recommend this page to a friend!
  Classes of Nicola Pietroluongo   Fakerino   tests/Fakerino/Test/Configuration/FakerinoConfTest.php   Download  
File: tests/Fakerino/Test/Configuration/FakerinoConfTest.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: fix code style, add more test for the fake table feature
Date: 7 years ago
Size: 1,224 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;

use
Fakerino\Configuration\FakerinoConf;

class
FakerinoConfTest extends \PHPUnit_Framework_TestCase
{
    public function
setUp()
    {
       
$this->default = array(
           
'supportedConfExts' => array('xml', 'yml', 'php', 'ini'),
           
'locale' => 'en_GB',
           
'fakerinoTag' => 'fake',
           
'fakeFilePath' => 'path',
        );
    }

    public function
testMinimumDefaultValues()
    {
       
$conf = new FakerinoConf();
       
$conf->loadConfiguration();
       
$this->assertEquals(array_keys($this->default), array_keys($conf->toArray()));

    }

    public function
testAdditionalConfValues()
    {
       
$testAdditional = array('test' => 1);
       
$this->default = array_merge($this->default, $testAdditional);
       
$conf = new FakerinoConf($testAdditional);
       
$conf->loadConfiguration();

       
$this->assertEquals(array_keys($this->default), array_keys($conf->toArray()));
    }
}