Files
roundcubemail/plugins/enigma/tests/EnigmaDriverGnupgTest.php
2024-06-05 07:46:51 +02:00

20 lines
375 B
PHP

<?php
namespace Roundcube\Plugins\Tests;
use PHPUnit\Framework\TestCase;
class EnigmaDriverGnupgTest extends TestCase
{
/**
* Test constructor
*/
public function test_constructor()
{
$rcube = \rcube::get_instance();
$plugin = new \enigma_driver_gnupg($rcube->user);
$this->assertInstanceOf('enigma_driver', $plugin);
}
}