copenssl/tests/X509StoreTest.php

17 lines
272 B
PHP
Raw Normal View History

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