@SuppressWarnings({ "unchecked", "rawtypes" })
private boolean validatePageScores(BasePlatform platform, BasePath dataPath) throws Exception {
boolean allOK = false;
int verifiedCnt = 0;
Tap sourceTap = platform.makeTap(platform.makeTextScheme(), dataPath);
TupleEntryIterator tupleEntryIterator = sourceTap.openForRead(platform.makeFlowProcess());
while (tupleEntryIterator.hasNext()) {
TupleEntry next = tupleEntryIterator.next();
String line = next.getString("line");
String[] split = line.split("\t");
if (split[0].equals(PAGE1_URL)) {