Exemplo n.º 1
0
    def testverificarSiHayLucesPrendidasRecibeUnMapaConTodosPuntosYUnCeroEnUnaEsquinaArribaALaIzquierdaDeberiaDevolverFalse(
            self):
        mapa = [
            ['0', '.', '.'],
            ['.', '.', '.'],
            ['.', '.', '.'],
        ]
        resultado = pasarDeNivel.verificarSiHayLucesPrendidas(mapa)

        self.assertEqual(resultado, False)
Exemplo n.º 2
0
    def testverificarSiHayLucesPrendidasRecibeUnMapaConTodosCerosDeberiaDevolverFalse(
            self):
        mapa = [
            ['0', '0', '0'],
            ['0', '0', '0'],
            ['0', '0', '0'],
        ]
        resultado = pasarDeNivel.verificarSiHayLucesPrendidas(mapa)

        self.assertEqual(resultado, False)
Exemplo n.º 3
0
    def testverificarSiHayLucesPrendidasRecibeUnMapaConTodosPuntosDeberiaDevolverTrue(
            self):

        mapa = [
            ['.', '.', '.'],
            ['.', '.', '.'],
            ['.', '.', '.'],
        ]

        resultado = pasarDeNivel.verificarSiHayLucesPrendidas(mapa)

        self.assertEqual(resultado, True)