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

16 lines
331 B
PHP
Raw Normal View History

2022-11-30 14:55:35 +00:00
<?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>'));
}
}