Junit4 Assert assertSame()方法
JUnit Assert.assertSame(Object expected, Object actual) 断言两个对象引用相同的对象。如果它们不相同, 则会引发没有消息的 AssertionError。
1 语法
Assert.assertSame(Object expected, Object actual)
2 参数
expected :预期对象
actual :与预期比较的对象
3 返回值
此方法不返回任何值。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
import org.junit.Test;
import java.util.HashMap;
import java.util.Map;
import static org.junit.Assert.assertSame;
/**
* Junit4 Assert assertSame()方法
*/
public class AssertSameExample {
private String processMap(final String key){
final Map<String, String> map = new HashMap<>();
map.put("key1", "value1");
map.put("key2", "value2");
map.put("key3", "value3");
map.put("key4", "value4");
map.put("key5", "value5");
map.put("key6", "value6");
map.put("key7", "value7");
map.put("key8", "value8");
return map.get(key);
}
@Test
public void checkSameReferenceTest(){
final AssertSameExample example = new AssertSameExample();
assertSame(example.processMap("key1"), example.processMap("key1"));
}
}
输出结果为:
热门文章
优秀文章