public function testTwoTeamTrueSkillCalculator()
 {
     $calculator = new TwoTeamTrueSkillCalculator();
     // We only support two players
     TrueSkillCalculatorTests::testAllTwoPlayerScenarios($this, $calculator);
     TrueSkillCalculatorTests::testAllTwoTeamScenarios($this, $calculator);
 }
 public function testFactorGraphTrueSkillCalculator()
 {
     $calculator = new FactorGraphTrueSkillCalculator();
     TrueSkillCalculatorTests::testAllTwoPlayerScenarios($this, $calculator);
     TrueSkillCalculatorTests::testAllTwoTeamScenarios($this, $calculator);
     TrueSkillCalculatorTests::testAllMultipleTeamScenarios($this, $calculator);
     TrueSkillCalculatorTests::testPartialPlayScenarios($this, $calculator);
 }