for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Jalle19\StatusManager\Test\Configuration\Reader;
use Jalle19\StatusManager\Configuration\Reader\ArrayReader;
/**
* Class ArrayReaderTest
* @package Jalle19\StatusManager\Test\Configuration\Reader
* @copyright Copyright © Sam Stenvall 2016-
* @license https://www.gnu.org/licenses/gpl.html The GNU General Public License v2.0
*/
class ArrayReaderTest extends \PHPUnit_Framework_TestCase
{
*
public function testReader()
$configuration = [
'foo' => 'bar',
'baz',
];
$reader = new ArrayReader($configuration);
$this->assertEquals($configuration, $reader->readConfiguration());
}