Files
iTop/tests/php-unit-tests/unitary-tests/setup/WebPageFake.php
2026-03-10 17:12:21 +01:00

17 lines
278 B
PHP

<?php
class WebPageFake extends WebPage
{
public string $sContent = '';
public function __construct(string $s_title = '', bool $bPrintable = false)
{
//parent::__construct($s_title,$bPrintable);
}
public function add($sContent)
{
$this->sContent .= $sContent;
}
}