14 lines
401 B
PHP
14 lines
401 B
PHP
|
<?php declare(strict_types=1);
|
||
|
require_once "core/block.php";
|
||
|
|
||
|
class BlockTest extends \PHPUnit\Framework\TestCase
|
||
|
{
|
||
|
public function test_basic() {
|
||
|
$b = new Block("head", "body");
|
||
|
$this->assertEquals(
|
||
|
"<section id='headmain'><h3 data-toggle-sel='#headmain' class=''>head</h3><div class='blockbody'>body</div></section>\n",
|
||
|
$b->get_html()
|
||
|
);
|
||
|
}
|
||
|
}
|