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

17 lines
No EOL
272 B
PHP

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