Method equalsMethod = (Method) javaType.getDirectMember("equals", null, false);
Assert.assertNotNull(equalsMethod);
Assert.assertTrue(equalsMethod.isActual());
Assert.assertTrue(equalsMethod.getRefinedDeclaration() != equalsMethod);
Value hashAttribute = (Value) javaType.getDirectMember("hash", null, false);
Assert.assertNotNull(hashAttribute);
Assert.assertTrue(hashAttribute.isActual());
Assert.assertTrue(hashAttribute.getRefinedDeclaration() != hashAttribute);
Value stringAttribute = (Value) javaType.getDirectMember("string", null, false);
Assert.assertNotNull(stringAttribute);
Assert.assertTrue(stringAttribute.isActual());
Assert.assertTrue(stringAttribute.getRefinedDeclaration() != stringAttribute);
Method cloneMethod = (Method) javaType.getDirectMember("clone", null, false);
Assert.assertNotNull(cloneMethod);
Assert.assertFalse(cloneMethod.isActual());
Assert.assertTrue(cloneMethod.getRefinedDeclaration() == cloneMethod);