Tests, finished for extensions

This commit is contained in:
martin
2023-07-09 19:58:32 +02:00
parent 0cb4367999
commit 31196886fd
12 changed files with 200 additions and 1 deletions

View File

@ -0,0 +1,74 @@
namespace BackendTests.Services;
public class ActionServiceTests
{
#region RollDice()
[Test]
public void RollDice_ReturnsListOfIntegers()
{
Assert.Fail();
}
#endregion
#region PlayerInfo(ActionMessage message)
[Test]
public void PlayerInfo_DataIsNull()
{
Assert.Fail();
}
[Test]
public void PlayerInfo_DataIsNotPlayer()
{
Assert.Fail();
}
[Test]
public void PlayerInfo_DataIsPlayer()
{
Assert.Fail();
}
#endregion
#region DoAction(ActionMessage message)
[Test]
public void DoAction_NegativeAction()
{
Assert.Fail();
}
[Test]
public void DoAction_OutOfBoundsAction()
{
Assert.Fail();
}
#endregion
#region Ready()
[Test]
public void Ready_PlayerIsNull()
{
Assert.Fail();
}
[Test]
public void Ready_SomeReady()
{
Assert.Fail();
}
[Test]
public void Ready_AllReady()
{
Assert.Fail();
}
#endregion
}