We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have the model to use AllPathPermutationsGenerator() as such:
modelhandler.add("test", new TestModel(file, true, new AllPathPermutationsGenerator(), true));
I got the following error when trying to run it:
2014-02-18 15:22:10,147 [Thread-0] ERROR org.graphwalker.Util - java.lang.NullPointerException at org.graphwalker.generators.PathGenerator.hasNext(PathGenerator.java:44) at org.graphwalker.ModelBasedTesting.hasNextStep(ModelBasedTesting.java:396)
This is caused by a the code in org.graphwalker.generators.PathGenerator:
43 public boolean More ...hasNext() { 44 return !stopCondition.isFulfilled(); 45 }
stopCondition variable is not initialised when we use AllPathPermutationsGenerator without argument.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have the model to use AllPathPermutationsGenerator() as such:
I got the following error when trying to run it:
This is caused by a the code in org.graphwalker.generators.PathGenerator:
stopCondition variable is not initialised when we use AllPathPermutationsGenerator without argument.
The text was updated successfully, but these errors were encountered: