mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-04-12 03:57:32 +00:00
fix: Fixing MathUtilsTest after rename
This commit is contained in:
parent
f8fc68e08f
commit
9d02ee0022
1 changed files with 2 additions and 2 deletions
|
|
@ -72,9 +72,9 @@ namespace ICD.Common.Utils.Tests
|
|||
[TestCase(9, 3, 0)]
|
||||
[TestCase(3, 2, 1)]
|
||||
[TestCase(-3, 2, 1)]
|
||||
public void ModTest(int value, int mod, int expected)
|
||||
public void ModulusTest(int value, int mod, int expected)
|
||||
{
|
||||
Assert.AreEqual(expected, MathUtils.Mod(value, mod));
|
||||
Assert.AreEqual(expected, MathUtils.Modulus(value, mod));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue