16 lines
309 B
PHP
16 lines
309 B
PHP
|
|
<?php
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace Phred\Testing;
|
||
|
|
|
||
|
|
use Phred\Testing\Contracts\TestRunnerInterface;
|
||
|
|
|
||
|
|
final class CodeceptionRunner implements TestRunnerInterface
|
||
|
|
{
|
||
|
|
public function run(?string $suite = null): int
|
||
|
|
{
|
||
|
|
// placeholder implementation always succeeds
|
||
|
|
return 0;
|
||
|
|
}
|
||
|
|
}
|