/*
 @Test
 public void testAssignItem() {
 	//Fails and that's good
 	assertFalse(compute.assign(null));
 	Compute compute2 = new Compute();
 	assertTrue(compute.assign(compute2));
 }
 */
 @Test
 public void testToJSON() {
   JSONObject jsonObject = new JSONObject();
   assertFalse(jsonObject.toString().equals(compute.toJSON()));
 }