mirror of
https://github.com/furyfire/trueskill.git
synced 2025-01-16 01:47:39 +00:00
21 lines
504 B
PHP
21 lines
504 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DNW\Skills\Tests;
|
|
|
|
use DNW\Skills\Player;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class PlayerTest extends TestCase
|
|
{
|
|
public function testPlayerObjectGetterSetter(): void
|
|
{
|
|
$p = new Player('dummy', 0.1, 0.2);
|
|
$this->assertEquals('dummy', (string)$p);
|
|
$this->assertEquals('dummy', $p->getId());
|
|
$this->assertEquals(0.1, $p->getPartialPlayPercentage());
|
|
$this->assertEquals(0.2, $p->getPartialUpdatePercentage());
|
|
}
|
|
}
|