16 lines
302 B
PHP
16 lines
302 B
PHP
<?php
|
|
|
|
namespace OpenCloud\integration;
|
|
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
interface TestInterface
|
|
{
|
|
public function __construct(LoggerInterface $logger, SampleManagerInterface $sampleManager);
|
|
|
|
public function runTests();
|
|
|
|
public function runOneTest($name);
|
|
|
|
public function teardown();
|
|
}
|