Questions tagged [graphwalker]

5 questions
1
vote
1 answer

What is requirement coverage in testing?

I was looking at graphwalker which is a model-based testing tool. It creates a model like an oriented graph and uses a generator and a stop condition to walk on that graph, something like: random(edge_coverage(100)) //covers the graph random till…
Shury
  • 468
  • 3
  • 15
  • 49
0
votes
0 answers

How can I ran test via Graphwalker?

I have prepared a schematic on graphwalker studio and would like to test ité I have determined start element and tried to ran schematic but it did not start greening out.
0
votes
1 answer

how to recursively call Java function and get version for derived class (antlr 4 walker)

I inherited an Antlr 4 parser (in Java) that uses the listener method but has some walkers that need to be special-cased. Background information: When you write a parser grammar in Antlr (v4) it generates some Java classes for you, one for each of…
intel_chris
  • 708
  • 1
  • 6
  • 17
0
votes
0 answers

How to use a graph made in YED for Graphwalker project?

I have been very much confused about the ways I can make my code to traverse a graph for Model Based Testing using graphwalker. I have constructed a graph (e2e.graphml) using yEd and I have copied that file to my project in Eclipse. I have also…
Mahi
  • 1
  • 1
-4
votes
1 answer

I am using graph walker tool. I like to know in this tool can two child edge can be excuted in parallel

If their is a Parent edge A, and two children edges B and C. If condition is true for both B and C, can it be executed in parallel. I am using REST API to execute it.