コード例 #1
0
def main():
    test = tester.Proc('dealer test', total)
    mark = test.run_process(check_dealer)
    test.add_mark(mark)
コード例 #2
0
def main():
    test = tester.Proc('optimal test', total)
    mark = test.run_process(check_optimal)
    test.add_mark(mark)
コード例 #3
0
def main():
    test = tester.Proc('split test', total)
    mark = test.run_process(check_split)
    test.add_mark(mark)
コード例 #4
0
def main():
    test = tester.Proc('initial test', total)
    mark = test.run_process(check_initial)
    test.add_mark(mark)
コード例 #5
0
def main():
    test = tester.Proc('double test', total)
    mark = test.run_process(check_double)
    test.add_mark(mark)
コード例 #6
0
def main():
    test = tester.Proc('advantage test', total)
    mark = test.run_process(check_advantage)
    test.add_mark(mark)
コード例 #7
0
def main():
    test = tester.Proc('stand test', total)
    mark = test.run_process(check_stand)
    test.add_mark(mark)