List<Topic> topicList = result.getTopicList();
assertNotNull(topicList);
assertEquals(21, topicList.size());
Topic thirdTopic = topicList.get(2);
reviewIdValuePair("3", "Economy & Growth", thirdTopic);
String expected =
"Economic growth is central to economic development. When " +
"national income grows, real people benefit. While there is no " +
"known formula for stimulating economic growth, data can help " +
"policy-makers better understand their countries' economic " +
"situations and guide any work toward improvement. Data here " +
"covers measures of economic growth, such as gross domestic " +
"product (GDP) and gross national income (GNI). It also includes " +
"indicators representing factors known to be relevant to " +
"economic growth, such as capital stock, employment, " +
"investment, savings, consumption, government spending, imports, " +
"and exports.";
String actual = thirdTopic.getSourceNote();
assertEquals (expected, actual);
}