Framework/src/Testing/CodeceptionRunner.php

16 lines
309 B
PHP
Raw Normal View History

<?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;
}
}