Exemplo n.º 1
0
        public void TestarPossibilidade2Organizado()
        {
            var testemunha = new Testemunha(1, 2, 5);
            var detetive   = new DetetiveOtimizado(testemunha, 6, 10, 6);

            Assert.AreEqual(new Solucao(1, 2, 5), detetive.pergunta());
        }
Exemplo n.º 2
0
        public void TestarPossibilidade2Organizado()
        {
            var testemunha = new Testemunha(1, 2, 5);
            var detetive = new DetetiveOtimizado(testemunha, 6, 10, 6);

            Assert.AreEqual(new Solucao(1, 2, 5), detetive.pergunta());
        }
Exemplo n.º 3
0
        public void TestarPossibilidade3Organizado()
        {
            var testemunha = new Testemunha(3, 5, 3);
            var detetive = new DetetiveOtimizado(testemunha, 6, 10, 6);

            var solucao = detetive.pergunta();
            Assert.AreEqual(new Solucao(3, 5, 3), solucao);
        }
Exemplo n.º 4
0
        public void TestarPossibilidade3Organizado()
        {
            var testemunha = new Testemunha(3, 5, 3);
            var detetive   = new DetetiveOtimizado(testemunha, 6, 10, 6);

            var solucao = detetive.pergunta();

            Assert.AreEqual(new Solucao(3, 5, 3), solucao);
        }