2016-03-09 15:36:02 +01:00
|
|
|
<?php
|
|
|
|
|
2016-03-23 15:30:47 +01:00
|
|
|
namespace OpenCloud\Integration;
|
2016-03-09 15:36:02 +01:00
|
|
|
|
|
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
|
|
|
|
interface TestInterface
|
|
|
|
{
|
|
|
|
public function __construct(LoggerInterface $logger, SampleManagerInterface $sampleManager);
|
|
|
|
|
|
|
|
public function runTests();
|
|
|
|
|
|
|
|
public function runOneTest($name);
|
|
|
|
|
|
|
|
public function teardown();
|
|
|
|
}
|