public void GetMgltCleanValue_ShouldBe80() { var starship = new Starship { Mglt = "80" }; var mglt = starship.GetMgltCleanValue(); Assert.AreEqual(80, mglt); }
public void GetMgltCleanValueWithoutValue_ShouldBe0() { var starship = new Starship { Mglt = "n/a" }; var mglt = starship.GetMgltCleanValue(); Assert.AreEqual(0, mglt); }