This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.junit.Test; | |
import junit.framework.Assert; | |
public class IntTest { | |
@Test | |
public void testSame() { | |
Assert.assertSame(100,100); | |
// Since assertSame takes two Objects, the two ints will be boxed to Integers. |