summaryrefslogtreecommitdiff
path: root/server/vendor/php-opencloud/common/tests/integration/TestInterface.php
blob: 418b407af68bb710155ae3f931350bb0745af07c (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();
}