from typing import NoReturn import pytest def to_str(x: int) -> str: return str(x) def test_to_str() -> None: assert to_str(3) == '3' def raises() ...
確定! 回上一頁