def test_caso_Productro_Matrices_I(self):
     self.assertEqual([[(9, 6), (5, -4)], [(10, 30),
                                           (0, 0)], [(4, 1), (0, 1)]],
                      Laboratorio2.productoMatricesImaginarias(
                          [[(4, 5), (1, 0)], [(0, 0),
                                              (6, -2)], [(-1, 0), (0, -1)]],
                          [[(1, -1), (0, -1)], [(0, 5), (0, 0)]]))
 def test_caso_Productro_Matrices_I_PMinima(self):
     self.assertEqual(
         [[(-33, 153), (120, 0),
           (-44, -22)], [(87, 0), (-26, -117),
                         (107, 70)], [(0, 165), (147, 26), (69, -36)]],
         Laboratorio2.productoMatricesImaginarias(
             [[(-6, 2), (0, 6),
               (7, 2)], [(6, 9), (7, 7), (-6, -6)], [(5, 8), (-6, 8),
                                                     (6, 9)]],
             [[(9, -6), (-3, -4),
               (5, -2)], [(3, 6), (-1, -5),
                          (0, -5)], [(9, 9), (8, -4), (-8, -4)]]))