Ejemplo n.º 1
0
def main():
    test = tester.Proc('dealer test', total)
    mark = test.run_process(check_dealer)
    test.add_mark(mark)
def main():
    test = tester.Proc('optimal test', total)
    mark = test.run_process(check_optimal)
    test.add_mark(mark)
def main():
    test = tester.Proc('split test', total)
    mark = test.run_process(check_split)
    test.add_mark(mark)
Ejemplo n.º 4
0
def main():
    test = tester.Proc('initial test', total)
    mark = test.run_process(check_initial)
    test.add_mark(mark)
def main():
    test = tester.Proc('double test', total)
    mark = test.run_process(check_double)
    test.add_mark(mark)
def main():
    test = tester.Proc('advantage test', total)
    mark = test.run_process(check_advantage)
    test.add_mark(mark)
Ejemplo n.º 7
0
def main():
    test = tester.Proc('stand test', total)
    mark = test.run_process(check_stand)
    test.add_mark(mark)