mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-19 15:22:17 +02:00
* N°8955 Add UIBlocks markup in the setup
This commit is contained in:
16
tests/php-unit-tests/unitary-tests/setup/WebPageFake.php
Normal file
16
tests/php-unit-tests/unitary-tests/setup/WebPageFake.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user