@Test
public void testModifyRelationship() throws Exception {
/*
* Test that no Exception is thrown for a valid user id
*/
InstagramSession session = getNewSession();
Relationship.Action action = null;
if (session.getRelationshipWith(Constants.VALID_USER_ID)
.getOutgoingStatus() == Relationship.OutgoingStatus.FOLLOWS)
action = Relationship.Action.UNFOLLOW;
else
action = Relationship.Action.FOLLOW;
//assertTrue(session.modifyRelationship(Constants.VALID_USER_ID, action));