Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.3
-
Fix Version/s: 1.3.2
-
Labels:None
-
Number of attachments :
Description
The equals method is not implemented. Therefore the following code fails the assertion;
@Test
public void sanityCheckEqualsMethod() {
JSONObject aJsonObj = new JSONObject("
");
JSONObject bJsonObj = new JSONObject("
");
assertEquals(aJsonObj,bJsonObj);
}