Update rank service to handle dealing with rank entries that dont make it on the list and adding start of unit tests

This commit is contained in:
2021-11-07 20:50:34 -05:00
parent e14f7fae74
commit 896b8c8dd1
7 changed files with 64 additions and 22 deletions

View File

@@ -0,0 +1,18 @@
using NUnit.Framework;
namespace TOOHUCardAPITests
{
public class Tests
{
[SetUp]
public void Setup()
{
}
[Test]
public void Test1()
{
Assert.Pass();
}
}
}