32 lines
632 B
Python
32 lines
632 B
Python
"""
|
|
Auto-generated Python stub file from testcheck.py
|
|
Module: testcheck
|
|
"""
|
|
|
|
|
|
import t, c
|
|
import stdio
|
|
from w32.win32console import SetConsoleOutputCP, SetConsoleCP
|
|
|
|
CP_UTF8: t.CDefine = 65001
|
|
_pass_count: t.CExtern | t.CInt
|
|
_fail_count: t.CExtern | t.CInt
|
|
_total_pass: t.CExtern | t.CInt
|
|
_total_fail: t.CExtern | t.CInt
|
|
|
|
def begin(name: str) -> t.CInt: pass
|
|
|
|
def section(name: str) -> t.CInt: pass
|
|
|
|
def ok(msg: str) -> t.CInt: pass
|
|
|
|
def fail(msg: str) -> t.CInt: pass
|
|
|
|
def check(cond: t.CInt, ok_msg: str, fail_msg: str) -> t.CInt: pass
|
|
|
|
def info(msg: str) -> t.CInt: pass
|
|
|
|
def end() -> t.CInt: pass
|
|
|
|
def summary() -> t.CInt: pass
|