Ejemplo n.º 1
0
        public void TestMethod3()
        {
            RussianRoulette.LogicClass testShootAway = new RussianRoulette.LogicClass();

            int testResultShootAway = testShootAway.Spin();

            Assert.IsTrue(testResultShootAway < 7 && testResultShootAway > 0);
        }
Ejemplo n.º 2
0
        public void TestMethod2()
        {
            RussianRoulette.LogicClass testshoot = new RussianRoulette.LogicClass();

            int testResultshoot = testshoot.ShootAway();

            Assert.IsTrue(testResultshoot <= 4 && testResultshoot > 0);
        }