mirror of
https://codeberg.org/demostf/api.git
synced 2026-06-03 18:04:08 +02:00
extract chat handling
This commit is contained in:
parent
66d177e23a
commit
9c963fd3af
7 changed files with 149 additions and 29 deletions
18
tests/Providers/InfoProviderTest.php
Normal file
18
tests/Providers/InfoProviderTest.php
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<?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() {
|
||||
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue