NGramCheckEObjectCondition condition = new NGramCheckEObjectCondition(
ConstraintsPackage.eINSTANCE.getTechnicalProperty_Name(),
nGramCheckCondition,catalogue );
SELECT statement = new SELECT(new FROM(catalogue
.getCatalogueProperties()), new WHERE(condition));
IQueryResult result = statement.execute();
assertTrue( result.contains(tp1));
assertFalse( result.contains(tp2));
assertEquals(1, result.size());