Commit af880c98 authored by Junling Bu's avatar Junling Bu
Browse files

chore: 增加一个测试用例

parent 76438497
package org.linlinjava.litemall.core;
import org.junit.Test;
public class IntegerTest {
@Test
public void test() {
Integer a = new Integer(512);
int b = 512;
Integer c = new Integer(512);
System.out.println(a==b);
System.out.println(a.equals(b));
System.out.println(a == c);
System.out.println(a.equals(c));
}
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment