mirror of
https://github.com/furyfire/trueskill.git
synced 2025-01-16 01:47:39 +00:00
Jens True
23fc14af0a
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
18 lines
401 B
PHP
18 lines
401 B
PHP
<?php
|
|
|
|
namespace DNW\Skills\Tests\FactorGraphs;
|
|
|
|
use DNW\Skills\FactorGraphs\ScheduleStep;
|
|
use DNW\Skills\FactorGraphs\Factor;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class ScheduleStepTest extends TestCase
|
|
{
|
|
public function test(): void
|
|
{
|
|
$stub = $this->createStub(Factor::class);
|
|
$ss = new ScheduleStep('dummy', $stub, 0);
|
|
$this->assertEquals('dummy', (string)$ss);
|
|
}
|
|
}
|