mirror of
https://codeberg.org/demostf/api.git
synced 2026-06-03 18:04:08 +02:00
18 lines
366 B
PHP
18 lines
366 B
PHP
<?php namespace Demostf\API\Test\Providers;
|
|
|
|
use Demostf\API\Providers\InfoProvider;
|
|
use Demostf\API\Test\TestCase;
|
|
|
|
class InfoProviderTest extends TestCase {
|
|
/** @var InfoProvider */
|
|
private $provider;
|
|
|
|
public function setUp() {
|
|
parent::setUp();
|
|
$this->provider = new InfoProvider($this->getDatabaseConnection());
|
|
}
|
|
|
|
public function testGetStats() {
|
|
|
|
}
|
|
}
|