PATH:
home
/
carfac
/
public_html
/
aeromediaimages.com
/
wp-content
/
plugins
/
cloudflare
/
src
/
Test
/
Integration
<?php namespace CF\Integration\Test; use CF\Integration\DefaultConfig; class DefaultConfigTest extends \PHPUnit\Framework\TestCase { public function testGetValueReturnsCorrectValue() { $key = 'key'; $value = 'value'; $config = new DefaultConfig(json_encode(array($key => $value))); $this->assertEquals($value, $config->getValue($key)); } }
[-] DefaultConfigTest.php
[edit]
[-] DefaultLoggerTest.php
[edit]
[+]
..