@Override
protected void testCompletionEngine(int offset, int rplLen) throws ModelException {
ContentAssistant ca = getContentAssistant(editor);
DeeCodeCompletionProcessor caProcessor = new DeeCodeCompletionProcessor(editor, ca, DeePartitions.DEE_CODE);
ICompletionProposal[] proposals = caProcessor.computeCompletionProposals(editor.getViewer(), offset);
for (ICompletionProposal completionProposal : proposals) {
if(completionProposal instanceof ScriptTemplateProposal) {
continue;
}