mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-02 22:34:03 +01:00
20 lines
375 B
PHP
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);
|
|
}
|
|
}
|