Пример #1
0
        public void TesouraXTesoura()
        {
            Verificador juiz   = new Verificador();
            string      result = juiz.ChecarResultado(JokenPo.Tesoura, JokenPo.Tesoura);

            Assert.AreEqual("Empate -> USER [TESOURA] | CPU [TESOURA]", result);
        }
Пример #2
0
        public void PapelXTesoura()
        {
            Verificador juiz   = new Verificador();
            string      result = juiz.ChecarResultado(JokenPo.Papel, JokenPo.Tesoura);

            Assert.AreEqual("Vencedor -> CPU [ TESOURA ]", result);
        }
Пример #3
0
        public void TesouraXPapel()
        {
            Verificador juiz   = new Verificador();
            string      result = juiz.ChecarResultado(JokenPo.Tesoura, JokenPo.Papel);

            Assert.AreEqual("Vencedor -> USER [ TESOURA ]", result);
        }
Пример #4
0
        public void PapelXPapel()
        {
            Verificador juiz   = new Verificador();
            string      result = juiz.ChecarResultado(JokenPo.Papel, JokenPo.Papel);

            Assert.AreEqual("Empate -> USER [PAPEL] | CPU [PAPEL]", result);
        }
Пример #5
0
        public void PapelXPedra()
        {
            Verificador juiz   = new Verificador();
            string      result = juiz.ChecarResultado(JokenPo.Papel, JokenPo.Pedra);

            Assert.AreEqual("Vencedor -> USER [ PAPEL ]", result);
        }
Пример #6
0
        public void PedraXTesoura()
        {
            Verificador juiz   = new Verificador();
            string      result = juiz.ChecarResultado(JokenPo.Pedra, JokenPo.Tesoura);

            Assert.AreEqual("Vencedor -> USER [ PEDRA ]", result);
        }
Пример #7
0
        public void PedraXPapel()
        {
            Verificador juiz   = new Verificador();
            string      result = juiz.ChecarResultado(JokenPo.Pedra, JokenPo.Papel);

            Assert.AreEqual("Vencedor -> CPU [ PAPEL ]", result);
        }
Пример #8
0
        public void PedraXPedra()
        {
            Verificador juiz   = new Verificador();
            string      result = juiz.ChecarResultado(JokenPo.Pedra, JokenPo.Pedra);

            Assert.AreEqual("Empate -> USER [PEDRA] | CPU [PEDRA]", result);
        }
Пример #9
0
        private static string ComputarResultado(string user, int CPU)
        {
            string[] jogadaUser = AdicionarJogadasUser(user);
            string[,] jogadas = AdicionarJogadasCPU();
            string[] jogadaCPU = { jogadas[0, CPU], jogadas[1, CPU] };

            Verificador juiz   = new Verificador();
            string      result = juiz.ChecarResultado(jogadaUser, jogadaCPU);

            return(result);
        }