PHP Classes

File: tests/ExtensionTest.php

Recommend this page to a friend!
  Packages of Scott Arciszewski   ext-pqcrypto   tests/ExtensionTest.php   Download  
File: tests/ExtensionTest.php
Role: Class source
Content type: text/plain
Description: Class source
Class: ext-pqcrypto
PHP extension to encrypt data with FIPS algorithms
Author: By
Last change:
Date: 9 days ago
Size: 255 bytes
 

Contents

Class file image Download
<?php
declare(strict_types=1);
namespace
PQCrypto\Tests;

use
PHPUnit\Framework\TestCase;

final class
ExtensionTest extends TestCase
{
    public function
testExtensionLoaded(): void
   
{
       
$this->assertTrue(extension_loaded('pqcrypto'));
    }
}