用法:
test.support.captured_stdin()
test.support.captured_stdout()
test.support.captured_stderr()
用
io.StringIO
对象临时替换命名流的上下文管理器。与输出流一起使用的示例:
with captured_stdout() as stdout, captured_stderr() as stderr: print("hello") print("error", file=sys.stderr) assert stdout.getvalue() == "hello\n" assert stderr.getvalue() == "error\n"
与输入流一起使用的示例:
with captured_stdin() as stdin: stdin.write('hello\n') stdin.seek(0) # call test code that consumes from sys.stdin captured = input() self.assertEqual(captured, "hello")
相关用法
- Python test.support.catch_unraisable_exception用法及代码示例
- Python test.support.check_impl_detail用法及代码示例
- Python test.support.check__all__用法及代码示例
- Python test.support.load_package_tests用法及代码示例
- Python test.support.import_helper.import_fresh_module用法及代码示例
- Python test.support.threading_helper.catch_threading_exception用法及代码示例
- Python test.support.warnings_helper.check_warnings用法及代码示例
- Python numpy testing.decorators.slow用法及代码示例
- Python numpy testing.decorators.setastest用法及代码示例
- Python tesnsorflow.grad_pass_through()用法及代码示例
- Python textwrap.indent用法及代码示例
- Python tensorflow.eye()用法及代码示例
- Python tensorflow.fill()用法及代码示例
- Python tensorflow.math.special.dawsn()用法及代码示例
- Python tensorflow.ensure_shape()用法及代码示例
- Python tensorflow.math.special.fresnel_cos()用法及代码示例
- Python tensorflow.raw_ops.Cos()用法及代码示例
- Python tensorflow.get_logger()用法及代码示例
- Python tensorflow.math.sqrt()用法及代码示例
- Python tensorflow.math.atanh()用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 test.support.captured_stdin。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。