Files
roundcubemail/tests/Framework/MessagePart.php
Michael Voříšek 2643be3eaa Fix single quotes CS (#9283)
* Fix "single_quote"

* fix "escape_implicit_backslashes"

* fix typo from f363481c

* fix single quotes in JS

* fix some minor JS CS

* fix CS v3.45.0
2023-12-31 16:36:55 +01:00

18 lines
336 B
PHP

<?php
/**
* Test class to test rcube_message_part class
*/
class Framework_MessagePart extends PHPUnit\Framework\TestCase
{
/**
* Class constructor
*/
function test_class()
{
$object = new rcube_message_part;
$this->assertInstanceOf('rcube_message_part', $object, 'Class constructor');
}
}