PHP Classes

File: tests/Fakerino/Test/Configuration/Exception/ConfValueNotFoundExceptionTest.php

Recommend this page to a friend!
  Classes of Nicola Pietroluongo   Fakerino   tests/Fakerino/Test/Configuration/Exception/ConfValueNotFoundExceptionTest.php   Download  
File: tests/Fakerino/Test/Configuration/Exception/ConfValueNotFoundExceptionTest.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:
Date: 8 years ago
Size: 855 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\Exception;

use
Fakerino\Configuration\Exception\ConfValueNotFoundException;

class
ConfValueNotFoundExceptionTest extends \PHPUnit_Framework_TestCase
{
    public function
testConfNotSupportedException()
    {
       
$value = 'test';
       
$e = new ConfValueNotFoundException($value);
       
$message = sprintf('
            The configuration value "%s" is not present,
            be sure the configuration is loaded and the value is defined
            '
, $value);

       
$this->assertEquals($message, $e->getMessage(), 'A message should be generated');
    }
}