mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-06 16:16:48 +01:00
* 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
18 lines
336 B
PHP
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');
|
|
}
|
|
}
|