示例#1
0
文件: tests.cs 项目: AndreyEpov/Game
        public void weaponp()
        {
            Gaming test = new Gaming();

            test.buyingweapon(6);
            Assert.AreEqual(6, test.weapon);
        }
示例#2
0
文件: tests.cs 项目: AndreyEpov/Game
        public void armor()
        {
            Gaming test = new Gaming();

            Assert.AreEqual(5, test.armor);
        }
示例#3
0
文件: tests.cs 项目: AndreyEpov/Game
        public void weapon()
        {
            Gaming test = new Gaming();

            Assert.AreEqual(1, test.weapon);
        }