コード例 #1
0
    def setUp(self):
        self.nombres = [
            "5435466-5_lucas_hidalgo.txt", "6968271-5_Andrea_valdes.ttxtt",
            "18936676-0_antonio_lopez.txt", "18936677-k_rodrigo_lave.txt"
        ]

        self.correctores = [
            Corrector(self.nombres[0]),
            Corrector(self.nombres[1]),
            Corrector(self.nombres[2]),
            Corrector(self.nombres[3]),
        ]
コード例 #2
0
ファイル: tester.py プロジェクト: rjherrera/IIC2233
 def setUp(self):
     self.correcciones = []
     for n in listdir("Trabajos"):
         self.correcciones.append(Corrector(n))
     self.c1 = self.correcciones[0]
     self.c2 = self.correcciones[1]
     self.c3 = self.correcciones[2]
     self.c4 = self.correcciones[3]
コード例 #3
0
ファイル: test_corrector.py プロジェクト: ivanwolf/IIC2233
 def setUp(self):
     self.caso1 = Corrector("5435466-5_lucas_hidalgo.txt")
     self.caso2 = Corrector("6968271-5_Andrea_valdes.ttxtt")
     self.caso3 = Corrector("18936676-0_antonio_lopez.txt")
     self.caso4 = Corrector("18936677-k_rodrigo_lave.txt")
     self.casos = [self.caso1, self.caso2, self.caso3, self.caso4]