16 lines
No EOL
253 B
PHP
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();
|
|
}
|
|
} |