JUnit - assertSame

后端 未结 2 893
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-30 23:29

Can someone tell me why assertSame() do fail when I use values > 127?

        import static org.junit.Assert.*;

        ...

        @Test
        public vo         


        
2条回答
  •  别那么骄傲
    2020-12-30 23:43

    The reason is the autoboxing of Java. You use the method:

    public static void assertSame(Object expected, Object actual)
    

    It only works with Objects. When you pass ints to this method, Java automatically calls

    Integer.valueOf( int i )
    

    with these values. So the cast to int has no effect.

    For values less than 128 Java has a cache, so assertSame() compares the Integer object with itself. For values greater than 127 Java creates new instances, so assertSame() compares an Integer object with another. Because they are not the same instance, the assertSame() method returns false.

    You should use the method:

    public static void assertEquals(Object expected, Object actual)
    

    instead. This method uses the equals() method from Object.

提交回复
热议问题