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

16 lines
No EOL
253 B
PHP

<?php
namespace Cijber\OpenSSL\Tests;
use Cijber\OpenSSL\X509;
use PHPUnit\Framework\TestCase;
class X509Test extends TestCase
{
function testCreationAndDestruction() {
$this->expectNotToPerformAssertions();
X509::new();
}
}