public void testAll() throws Exception {
Resource review = bnode(bnodeIndex + 1);
assertExpected("IMHO, #thebestmovieever (3/5) is only so-so.",
new Triple(THEBESTMOVIEEVER, HASREVIEW, review),
new Triple(review, TYPE, REVIEW),
new Triple(review, RATING, new PlainLiteral("3")),
new Triple(review, MAXRATING, new PlainLiteral("5")),
new Triple(review, MINRATING, new PlainLiteral("0")),
// FIXME: restore this once the corresponding statement is restored in ReviewMatcher
// new Triple(review, REVIEWER, tweetContext.thisPerson()),
new Triple(review, TEXT, new PlainLiteral("IMHO, #thebestmovieever (3/5) is only so-so.")));
}