mirror of
https://github.com/furyfire/trueskill.git
synced 2025-03-19 00:08:37 +00:00
All tests now extend TestCase
This commit is contained in:
@ -1,9 +1,8 @@
|
||||
<?php namespace Moserware\Skills\Tests;
|
||||
|
||||
use Moserware\Skills\RankSorter;
|
||||
use \PHPUnit_Framework_TestCase;
|
||||
|
||||
class RankSorterTest extends PHPUnit_Framework_TestCase
|
||||
|
||||
class RankSorterTest extends TestCase
|
||||
{
|
||||
public function testSort()
|
||||
{
|
||||
@ -20,6 +19,5 @@ class RankSorterTest extends PHPUnit_Framework_TestCase
|
||||
$this->assertEquals($team2, $sortedRanks[0]);
|
||||
$this->assertEquals($team3, $sortedRanks[1]);
|
||||
$this->assertEquals($team1, $sortedRanks[2]);
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user