Here you can find the source of assertEquals(Integer a, Integer b)
private static void assertEquals(Integer a, Integer b)
//package com.java2s; //License from project: Open Source License public class Main { private static void assertEquals(Integer a, Integer b) { if (!a.equals(b)) throw new AssertionError(); }//from w ww . ja va 2 s. c o m }