Beispiel #1
0
        public void TestMethod1()
        {
            AbilityScores scores = new AbilityScores();
            int           i      = 4;

            int[] testScore = new int[2] {
                i, -3
            };
            scores.SetStat("Strength", i);
            Assert.AreEqual(testScore[1], scores.Scores["Strength"][1]);
        }