mirror of
https://github.com/furyfire/trueskill.git
synced 2025-01-16 01:47:39 +00:00
19 lines
554 B
C#
19 lines
554 B
C#
using Moserware.Skills.TrueSkill;
|
|
using NUnit.Framework;
|
|
|
|
namespace UnitTests.TrueSkill
|
|
{
|
|
[TestFixture]
|
|
public class TwoTeamTrueSkillCalculatorTest
|
|
{
|
|
[Test]
|
|
public void TwoTeamTrueSkillCalculatorTests()
|
|
{
|
|
var calculator = new TwoTeamTrueSkillCalculator();
|
|
|
|
// This calculator supports up to two teams with many players each
|
|
TrueSkillCalculatorTests.TestAllTwoPlayerScenarios(calculator);
|
|
TrueSkillCalculatorTests.TestAllTwoTeamScenarios(calculator);
|
|
}
|
|
}
|
|
} |