Respuesta :

Answer:

The true statements are :

A. assertEquals(student1,student2)

C. assertSame(student1,student3)

Explanation:

AssertEquals() asserts that the objects are equal, but assertSame() asserts that the passed two objects refer to the same object or not, if found same they return true, else return false.

i hope this work for you