renamed tests folder

This commit is contained in:
kremsy
2017-04-15 23:20:36 +02:00
parent ba6d122447
commit 23d9ade5cf
6 changed files with 255 additions and 0 deletions

View File

@ -0,0 +1,23 @@
<?php
use ManiaControl\ManiaControl;
class ManiaControlTest extends PHPUnit_Framework_TestCase {
public function testRun(){
$maniaControl = new ManiaControl();
$maniaControl->run(10);
sleep(15);
//$this->l
//$this->assertNull($maniaControl);
}
/* public function testGetClient(){
$maniaControl = new ManiaControl();
$mcClient = $maniaControl->getClient();
//$maniaControl->connect();
//$mpClient = new Maniaplanet\DedicatedServer\Connection();
}*/
}