blob: a89e8af61264765529189ee7c9c358b974e67746 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?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();
}
|