rename tests project folder

This commit is contained in:
Llywelwyn 2022-07-25 20:19:23 +01:00
parent ef3cd7c6b5
commit e9e606b46d
4 changed files with 0 additions and 0 deletions

View file

@ -1,18 +0,0 @@
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));
}
}
}