}
@Test
public void testTokenizeSharedSuccess() {
KnowledgeBase kb = new KnowledgeBase();
AtomDConstant data = new AtomDConstant( literal( "hi;bye;foo;bar" ) );
AtomDVariable x = new AtomDVariable("x");
AtomDConstant comma = new AtomDConstant( literal( "," ) );
Collection<AtomVariable> emptyCollection = Collections.emptySet();
Collection<AtomVariable> xSingleton = Collections.singleton( (AtomVariable) x );
BuiltInAtom sharedVarAtom = new BuiltInAtom( Namespaces.SWRLB + "tokenize", x, x, comma );
BindingHelper sharedVarHelper = StringOperators.tokenize.createHelper( sharedVarAtom );