removes erroneous reference, adds unit test project
This commit is contained in:
parent
109a79049d
commit
93161d6ce9
7 changed files with 135 additions and 3 deletions
|
|
@ -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));
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue