Files
roundcubemail/tests/Framework/ResultSetTest.php
2024-06-05 07:46:51 +02:00

22 lines
391 B
PHP

<?php
namespace Roundcube\Tests\Framework;
use PHPUnit\Framework\TestCase;
/**
* Test class to test rcube_result_set class
*/
class ResultSetTest extends TestCase
{
/**
* Class constructor
*/
public function test_class()
{
$object = new \rcube_result_set();
$this->assertInstanceOf(\rcube_result_set::class, $object, 'Class constructor');
}
}