Replaces cooldown circle (#956)

This commit is contained in:
Tomeno
2020-05-23 11:26:59 +02:00
committed by GitHub
parent cad59d2cb4
commit af0ec2aeb9
6 changed files with 46 additions and 54 deletions

View File

@@ -1,17 +0,0 @@
using Content.Client.UserInterface;
using NUnit.Framework;
namespace Content.Tests.Client.UserInterface
{
[TestFixture]
public class ItemSlotTest
{
[Test]
public void TestCalculateCooldownLevel()
{
Assert.AreEqual(ItemSlotManager.CalculateCooldownLevel(0.5f), 4);
Assert.AreEqual(ItemSlotManager.CalculateCooldownLevel(1), 8);
Assert.AreEqual(ItemSlotManager.CalculateCooldownLevel(0), 0);
}
}
}