// object to facilitate KB manipulation and query (but we are not going to use query)
TextModeRunner textModeRunner = new TextModeRunner();
// instantiate and setup knowledge base
KnowledgeBase kb = textModeRunner.createKnowledgeBase(PowerLoomKB.getNewInstanceKB(), mebn);
// load finding data from file and insert to KB
try {
// load findings from file
kb.loadModule(plmFileToLoad, true);
// fill mebn with findings
textModeRunner.fillFindings(mebn, kb);
} catch (UBIOException e) {
e.printStackTrace();
fail(e.getMessage());