removes erroneous reference, adds unit test project

This commit is contained in:
Llywelwyn 2022-07-25 19:43:18 +01:00
parent 109a79049d
commit 93161d6ce9
7 changed files with 135 additions and 3 deletions

View file

@ -0,0 +1,18 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using CharacterRecordsGenerator;
namespace CharacterRecordsGeneratorTests
{
[TestClass]
public class CharacterRecordsUtilitiesTests
{
[TestMethod]
public void Utility_CmToFeet_WithValidNumber()
{
double cm = 150.0;
string expected = "4'11\"";
Assert.AreEqual(expected, Utility.CmToFeet(cm));
}
}
}