Package com.google.code.facebookapi.schema

Examples of com.google.code.facebookapi.schema.IdToBooleanPair


    Assert.assertEquals( userId, userRecords.getKey() );

    List<IdToBooleanPair> idPairs = userRecords.getDashboardMultiClearNewsResponseEltElt();
    Assert.assertNotNull( idPairs );
    Assert.assertEquals( 1, idPairs.size() );
    final IdToBooleanPair pair = idPairs.get( 0 );
    Assert.assertEquals( newsId, pair.getKey() );
    Assert.assertTrue( pair.isValue() );
  }
View Full Code Here

TOP

Related Classes of com.google.code.facebookapi.schema.IdToBooleanPair

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.