copenssl/tests/OpenSSLTest.php

17 lines
255 B
PHP
Raw Normal View History

2019-11-24 23:45:19 +00:00
<?php
namespace Cijber\OpenSSL\Tests;
use Cijber\OpenSSL;
use PHPUnit\Framework\TestCase;
class OpenSSLTest extends TestCase
{
public function testInit()
{
$this->expectNotToPerformAssertions();
OpenSSL::getInstance();
}
}