예제 #1
0
        public void GivenStrScoreAndWeightLoadReturned(int str, decimal weight, string expect)
        {
            Weight load   = new Weight();
            string actual = load.CalculateLoad(str, weight);

            Assert.AreEqual(expect, actual);
        }