本文整理汇总了Python中tests.Test.finalResult方法的典型用法代码示例。如果您正苦于以下问题:Python Test.finalResult方法的具体用法?Python Test.finalResult怎么用?Python Test.finalResult使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tests.Test
的用法示例。
在下文中一共展示了Test.finalResult方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: main
# 需要导入模块: from tests import Test [as 别名]
# 或者: from tests.Test import finalResult [as 别名]
def main():
"""
Prodecimiento principal del programa
TODO: Bucle infinito que te permita elegir otro test(o el mismo) al acabar el presente
"""
correct_path = True
# path = raw_input('Introduzca el nombre (o ruta) de su fichero de test\'.csv\':')
# path = 'testPOO.csv'
path = 'testEDA.csv'
try:
io = Read(path)
except IOError:
correct_path = False
else:
correct_path = True
while(not correct_path):
path = raw_input("Introduzca la direccion del fichero: ")
try:
io = Read(path)
except IOError:
correct_path = False
else:
correct_path = True
info, answers = io.getContent()
test = Test(info, answers)
run(test)
print test.finalResult()
return 0