PHP Classes

File: tests/Fakerino/Test/FakeData/Core/FileFakeTest.php

Recommend this page to a friend!
  Classes of Nicola Pietroluongo   Fakerino   tests/Fakerino/Test/FakeData/Core/FileFakeTest.php   Download  
File: tests/Fakerino/Test/FakeData/Core/FileFakeTest.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: 826 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\FakeData\Core;

use
Fakerino\FakeData\Core\FileFake;

class
FileFakeTest extends \PHPUnit_Framework_TestCase
{
    public function
testFileFake()
    {
       
$this->assertInstanceOf('Fakerino\FakeData\FakeDataInterface', new FileFake());
    }

    public function
testGetRequiredOptions()
    {
       
$fileFake = new FileFake();

       
$this->assertNull($fileFake->getDefaultOptions());
    }

    public function
testGetDefaultOptions()
    {
       
$fileFake = new FileFake();

       
$this->assertNull($fileFake->getRequiredOptions());
    }
}