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