tex/src/Document.php

22 lines
357 B
PHP
Raw Normal View History

2022-10-26 16:13:19 +02:00
<?php
namespace Zoomyboy\Tex;
use PHPUnit\Framework\Assert;
abstract class Document
{
public function assertHasContent(string $content): void
{
Assert::assertStringContainsString(
$content,
$this->renderBody(),
);
}
protected function renderBody(): string
{
return 'gggggMax';
}
}