public void testStatementTripleBoundaryNowhere()
{
final TripleBoundary nowhere = TripleBoundary.stopNowhere;
Assert.assertSame(nowhere,
new StatementTripleBoundary(nowhere).asTripleBoundary(null));
Assert.assertFalse(new StatementTripleBoundary(nowhere)
.stopAt(ModelHelper.statement("s P _o")));
Assert.assertFalse(new StatementTripleBoundary(nowhere)
.stopAt(ModelHelper.statement("s P o")));
}