MBpm bpm = MBpm.createBpm(config);
bpm.setAsDefault();
assertNotNull(bpm);
BpmWorkflow testWorkflow = bpm.getWorkflow("test01");
assertNotNull(testWorkflow);
BpmInstance testInstance = testWorkflow.start(new AttributeMap("v01","value01"));
assertNotNull(testInstance);
//start
System.out.println(testInstance.getCurrentActivities());
System.out.println("v01=" + testInstance.getContext().getString("v01", null));