GraphWalker / graphwalker-project

This is the repo for the Model-based testing tool GraphWalker.

Home Page:http://graphwalker.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Version upgrade

opened this issue · comments

Now I am trying to upgrade the version to 4.3.0. It seems some old version functions were gone.

ContextFactory factory = ContextFactoryScanner.get(modelPath);
executionContext = factory.create(modelPath, requestModel);
executionContext.getScriptEngine()
Which functions should I use ?

The ContextFactoryScanner.get return a list of Context.

ContextFactory factory = ContextFactoryScanner.get(path);
List<Context> contexts = factory.create(path);

Also, a ContextFactory.create returns a list of Context.