JUnit 单元测试:测试 open_character_stream 方法
@Test public void testOpenCharacterStream() throws Exception { // 测试输入为 null 的情况 BufferedReader reader = MyClass.open_character_stream(null); assertNotNull(reader);
// 测试输入为不存在的文件的情况
String nonExistentFile = 'nonexistent.txt';
try {
reader = MyClass.open_character_stream(nonExistentFile);
fail('Expected an exception to be thrown');
} catch (IOException e) {
assertEquals('File not found: ' + nonExistentFile, e.getMessage());
assertNull(reader);
}
}
原文地址: https://www.cveoy.top/t/topic/nruy 著作权归作者所有。请勿转载和采集!