首页 > 作文

Assert.assertEquals()方法参数详解

更新时间:2023-04-04 03:59:19 阅读: 评论:0

junit.framework包下的asrt提供了多个断言方法. 主用于比较测试传递进去的两个参数.

asrt.asrtequals();及其重载方法:

1. 如果两者一致, 程序继续往下运行.2. 如果两者不一致, 中断测试方法, 抛出异常信息 asrtionfailederror .

以asrt.asrtequals(int expected, int actual)为例:

/** * asrts that two ints are equal. 断言两个int是相等的 */static public void asrtequals(int expected, int actual) {    asrtequals(null, expected, actual);}

可以看到里面调用了asrtequals(string message, int expected, int actual)方法:

/** * asrts that two ints are equal. if they are not * an asrtionfailederror is t理学是什么hrown with the given message. * 如果不抛出带有 message 的异常(asrtionfailederror)信息, 则表明两者相等 */static public void asrtequals(string message, int expected, int actual) {    asrtequals(message, integer.valueof(expected), integer.valueof(actual));}

可以看到, 这里把int类型封箱成为integer类型. 注释说, 会抛异常, 但这里没有. 没关系, 我们接着看里面调用: asrtequals(string message, object expected, object actual)方法:

/** * asrts that two objects are equal. if they are not * an asrtionfailederror is thrown with the given message. * 如果不抛出带有 message 的异常(asrtionfailederror)信息, 则表明两者相等(这里比较的是object对象) */static public void asrtequals(string message, object expected, object actual) {    if (expected == null && actual == null) {        return;    }    if (expected != null && expected.equals(actual)) {        return;    }    failnotequals(message, expected, actual);}

两个if语句, 判断了两者相等的情况: 引用(地址)相等或者内容相等. 如果这两种if情况都不命中, 那么表明1参和比较财政学2参实际是不相等, 所以代码会往下执行failnotequals(string message, object expected, object actual)方法,并在此方法中抛出异常, 接下来就比较简单了:

static public void failnotequals(string message, object expected, object actual) {    fail(format(message, expected, actual));}public static string format(string message, object expected, object actual) {    string formatted = "";    if (message != null && message.length() > 0) {        formatted = message + " ";    }    return formatted + "expected:<" + expected + "> but was:<" + actual + ">";}/*** fails a test with the given message.*/static public void fail(string message) {if (message == null) {    throw new asrtionfailederror();}throw new asrtionfailederror(message);}

以上可以看出, 最终是由fail(string message)这个方法抛出异常信息!!

asrt.asrtequals()使用方法:

使用, 示例代码:

asrt.asrtequals(true, arry.contains("hello"));asrt.asrtequals(39991l, aa.getlong("key3", 0l));asrt.asrtequals(true, bb.getboolean("key4", fal));asrt.asrtequals(5.3f, cc.getfloat("key5", 0.f));asrt.asrtequals(99, dd.getint("key6", 1));asrt.asrtequals("如果打印本信息, 证明参数不相等", 10l, 10);

按照源码分析, 我们可以把一个预期结果作为1参传递进去. 2参传递我们需要测试的方法. 然后执行. 相等, 代码继续往下执行, 不相等, 中断执行, 抛出异常信息!!!

略作一提:

asrt.asrtsame(object expected, object actual)方法:

其比较的是引用地址是否相等, 并没有对内容进行比较:

/** * asrts that two objects refer to怎么qq空间打不开 the same object. if they are not * the same an asrtionfailederror is河南查分系统入口 thrown. */static public void asrtsame(object expected, object actual) {    asrtsame(null, expected, actual);}/** * asrts that two objects refer to the same object. if they are not * an asrtionfailederror is thrown with the given message. */static public void asrtsame(string message, object expected, object actual) {    if (expected == actual) {        return;    }    failnotsame(message, expected, actual);}

到此这篇关于asrt.asrtequu盘格式化不了怎么办als()方法参数详解的文章就介绍到这了。希望对大家的学习有所帮助,也希望大家多多支持www.887551.com。

本文发布于:2023-04-04 03:59:17,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/7b98a2baf2c70605c3fdc245afcaadd2.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:Assert.assertEquals()方法参数详解.doc

本文 PDF 下载地址:Assert.assertEquals()方法参数详解.pdf

标签:方法   抛出   异常   信息
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图