html-object-strings/tests/Nodes/TextTest.php

15 lines
331 B
PHP

<?php
namespace ByJoby\HTML\Nodes;
use PHPUnit\Framework\TestCase;
class TextTest extends TestCase
{
public function testSimpleText(): void
{
$this->assertEquals('', new Text(''));
$this->assertEquals('foo', new Text('foo'));
$this->assertEquals('foo', new Text('<strong>foo</strong>'));
}
}