for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* MOJEPANSTWO-API
*
* Copyright © 2017 pudelek.org.pl
* @license MIT License (MIT)
* For the full copyright and license information, please view source file
* that is bundled with this package in the file LICENSE
* @author Marcin Pudełek <[email protected]>
*/
namespace mrcnpdlk\MojePanstwo;
use Psr\Log\NullLogger;
class ClientTest extends TestCase
{
public function setUp()
parent::setUp();
}
public function testEmptyLogger()
$oClient = new \mrcnpdlk\MojePanstwo\Client();
$this->assertInstanceOf(NullLogger::class, $oClient->getLogger());
public function testEmptyCache()