示例#1
0
        public void BathTestMethod2()
        {
            var       BathStates2     = new BathStates();
            BathState bathState2      = BathState.bad;
            var       expectedResult2 = "bad";

            BathState result2 = BathStates.GetBathState(expectedResult2);

            Assert.AreEqual(bathState2, result2);
        }
示例#2
0
        public void BathTestMethod3()
        {
            var       BathStates3     = new BathStates();
            BathState bathState3      = BathState.normal;
            var       expectedResult3 = "normal";

            BathState result3 = BathStates.GetBathState(expectedResult3);

            Assert.AreEqual(bathState3, result3);
        }
示例#3
0
        public void BathTestMethod()
        {
            var       BathStates     = new BathStates();
            BathState bathState      = BathState.good;
            var       expectedResult = "good";

            BathState result = BathStates.GetBathState(expectedResult);

            Assert.AreEqual(bathState, result);
        }