mirror of
https://github.com/furyfire/trueskill.git
synced 2025-01-16 09:57:40 +00:00
22 lines
678 B
C#
22 lines
678 B
C#
|
using Moserware.Skills.TrueSkill;
|
|||
|
using NUnit.Framework;
|
|||
|
|
|||
|
namespace UnitTests.TrueSkill
|
|||
|
{
|
|||
|
[TestFixture]
|
|||
|
public class FactorGraphTrueSkillCalculatorTests
|
|||
|
{
|
|||
|
[Test]
|
|||
|
public void FullFactorGraphCalculatorTests()
|
|||
|
{
|
|||
|
var calculator = new FactorGraphTrueSkillCalculator();
|
|||
|
|
|||
|
// We can test all classes
|
|||
|
TrueSkillCalculatorTests.TestAllTwoPlayerScenarios(calculator);
|
|||
|
TrueSkillCalculatorTests.TestAllTwoTeamScenarios(calculator);
|
|||
|
TrueSkillCalculatorTests.TestAllMultipleTeamScenarios(calculator);
|
|||
|
|
|||
|
TrueSkillCalculatorTests.TestPartialPlayScenarios(calculator);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|