Complete the code to check if two references point to the same object using JUnit.
assert[1](obj1, obj2);assertSame checks if both references point to the exact same object in memory.
Complete the code to verify that two references do NOT point to the same object using JUnit.
assert[1](objA, objB);assertNotSame checks that two references do not point to the same object.
Fix the error in the assertion that checks if two objects are the same instance.
assertSame([1], obj);The first argument must be a reference to an object, not a method call or value.
Fill both blanks to assert that two variables do NOT refer to the same object and provide a failure message.
assert[1]("Objects should not be same", [2], obj2);
assertNotSame with a message checks that obj1 and obj2 are different objects.
Fill all three blanks to assert that two objects are the same instance with a custom failure message.
assert[1]("Failure: objects differ", [2], [3]);
assertSame with a message checks that objA and objB are the exact same object.