mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-31 01:34:12 +02:00
29 lines
552 B
PHP
29 lines
552 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Test;
|
|
|
|
abstract class TestSuiteUnit
|
|
{
|
|
private $testdoxFile;
|
|
|
|
public function run()
|
|
{
|
|
}
|
|
public function __construct()
|
|
{
|
|
$this->testdoxFile = $this->newTempfile();
|
|
}
|
|
|
|
public function __destruct()
|
|
{
|
|
if ($this->testdoxFile && file_exists($this->testdoxFile)) {
|
|
unlink($this->testdoxFile);
|
|
}
|
|
}
|
|
|
|
public function getPhpunitCommand()
|
|
{
|
|
// return phpunit --bootstrap test/bootstrap.php --testdox-text /tmp/testdox.txt .
|
|
}
|
|
}
|