character-records-generator/CharacterRecordsGeneratorTests/CharacterRecordsUtilitiesTests.cs

18 lines
449 B
C#

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));
}
}
}