copenssl/tests/X509Test.php

16 lines
253 B
PHP
Raw Normal View History

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