for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Zenstruck\Governator\Tests\Unit\Store;
use PHPUnit\Framework\TestCase;
use Zenstruck\Governator\Store\RedisStore;
/**
* @author Kevin Bond <[email protected]>
*/
final class RedisStoreTest extends TestCase
{
* @test
public function must_instantiate_with_a_valid_connection(): void
$this->expectException(\InvalidArgumentException::class);
new RedisStore(new \stdClass());
}