public void TestRightWhenPiece() { UnitType type = ParseStringToType.UnitType("piece"); Assert.AreEqual(type, UnitType.piece); }
public void TestNotFound() { UnitType type = ParseStringToType.UnitType("Ll"); Assert.AreEqual(type, UnitType.notFound); }
public void TestRightWheng() { UnitType type = ParseStringToType.UnitType("g"); Assert.AreEqual(type, UnitType.g); }