gpt4 book ai didi

java - 测试重写的 equals 方法

转载 作者:行者123 更新时间:2023-11-28 21:10:18 25 4
gpt4 key购买 nike

我正在阅读 J. Bloch 的 effective Java,需要温习一下 equals/hashCode 契约和关系。

我有以下 JavaBeans 类:

public class MyJavaBean{

private int id;

private Properties fItem; //Enumeration type

private String value;

private Rule rule; //Enumeration type

private int fId;

//GET, SET

@Override
public boolean equals(Object o){
if(!(o instanceof MyJavaBean))
return false;
MyJavaBeanv = (MyJavaBean) o;
return (fItem == null ? v.fItem == null : fItem.equals(v.fItem)) &&
(value == null ? v.value == null : value.equals(v.value)) &&
(rule == null ? v.rule == null : rule.equals(v.rule)) &&
fId == v.fId && id == v.id;
}

@Override
public int hashCode(){
int result = 17;
if(fItem != null)
result = 31 * result + fItem.hashCode();
if(value != null)
result = 31 * result + value.hashCode();
if(rule != null)
result = 31 * result + rule.hashCode();
result = 31 * result + fId;
result = 31 * result + id;
return result;
}
}

他还建议我们编写单元测试以确保契约(Contract)确实得到满足。这是他说的(斜体-粗体强调我的):

When you are finished writing your equals method, ask yourself three questions: Is it symmetric? Is it transitive? Is it consistent? And don’t just ask yourself; write unit tests to check that these properties hold!

所以,我无法想象如何为这个非常简单的案例编写单元测试。好吧,我会写这样的东西:

public class MyTest{

//Each pair consists of the equals object
private Map<MyJavaBean, MyJavaBean> equalValueMap;

@Before
public void init(){
//initializing the map, using ThredLocalRandom
//to get ints and enums randomly
}

@Test
public void testReflexive(){
for(MyJavaBean fiv: equalValueMap.keySet()){
Assert.assertEquals(fiv.equals(fiv), true);
}
}

@Test
public void testSymmetric(){
for(MyJavaBean fiv: equalValueMap.keySet()){
Assert.assertEquals(equalValueMap.get(fiv).equals(fiv), true);
Assert.assertEquals(fiv.equals(equalValueMap.get(fiv)), true);
}
}

@Test
public void testHashCode(){
for(FilterItemValue fiv: equalFilterValueMap.keySet()){
Assert.assertEquals(equalFilterValueMap.get(fiv).hashCode(), fiv.hashCode());
}
}
}

但我认为这样的测试只是浪费构建时间,因为它们很简单。是否值得为简单的 JavaBeans 的方法编写测试?

最佳答案

恕我直言!如果 equals()hashCode() 是由您信任的 IDE/某些帮助库生成的,您可以安全地跳过它们的测试。

尽管如此,如果您确实在做一些复杂的事情并且担心这些方法在运行时可能无法按预期运行,那么花时间编写一个简单的测试可能是值得的。

关于java - 测试重写的 equals 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32967897/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com