File: EmptyStringTest.php

package info (click to toggle)
php-roundcube-rtf-html-php 2.2-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 276 kB
  • sloc: php: 1,277; makefile: 10
file content (13 lines) | stat: -rw-r--r-- 234 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

use PHPUnit\Framework\TestCase;
use RtfHtmlPhp\Document;

class EmptyStringTest extends TestCase
{
    public function testParseEmptyString()
    {
        $document = new Document("");
        $this->assertTrue(true);
    }
}