我有一个带有 InputStream 捕获的单元测试。像这样的东西:
Capture<InputStream> capturedArgument = new Capture<InputStream>();
// some expectations and the tested method execution here
InputStream actualStream = capturedArgument.getValue();
// some assertions here
实际流(在测试中捕获)在测试对象中关闭。我应该在单元测试中的断言之后手动关闭 actualStream 吗?还是在实际关闭流后也会关闭?
谢谢你。