/**
* @tests java.io.UTFDataFormatException#UTFDataFormatException()
*/
@TestTargetNew(
level = TestLevel.COMPLETE,
method = "UTFDataFormatException",
args = {}
)
public void test_Constructor() {
try {
if (true) // To avoid unreachable code compilation error.
throw new UTFDataFormatException();
fail("Test 1: UTFDataFormatException expected.");
} catch (UTFDataFormatException e) {
assertNull("Test 2: Null expected for exceptions constructed without a message.",
e.getMessage());
}
}
UTFDataFormatExceptionTest.java 文件源码
java
阅读 20
收藏 0
点赞 0
评论 0
项目:In-the-Box-Fork
作者:
评论列表
文章目录