copenssl/tests/OpenSSLTest.php
eater 2e64118f8c
Some checks failed
continuous-integration/drone/push Build is failing
Initial commit
2019-11-25 00:45:19 +01:00

17 lines
No EOL
255 B
PHP

<?php
namespace Cijber\OpenSSL\Tests;
use Cijber\OpenSSL;
use PHPUnit\Framework\TestCase;
class OpenSSLTest extends TestCase
{
public function testInit()
{
$this->expectNotToPerformAssertions();
OpenSSL::getInstance();
}
}