public void testGetRelationship() throws Exception {
System.out.println("getRelationship");
String sourceId = "";
String targetId = "";
DoubanShuoService instance = new DoubanShuoService();
DoubanShuoRelation expResult = null;
DoubanShuoRelation result = instance.getRelationship(sourceId, targetId, DefaultConfigs.API_KEY);
assertEquals(expResult, result);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}