QAF support BDD in pure java enables development team to follow behavior driven development approach for test automation implementation in best efficient way.

BDD in Java

When authoring test cases in Java, QAF supports BDD with scenario implementation in Java. Test developer don’t need to relay on plain text bdd or feature file and still follow Behavior Driven Development. It will help in making BDD simpler and still will have all feature of QAF BDD without sacrificing any benefit of TestNG. Moreover, it will eliminate extra layer of feature files and certainly step definition files. You can construct scenario inside your test method and run it. As test implementation in java, you can have full programming control and take all benefits of TestNG. Runtime Scenario supports all qaf bdd features listed below:

  • Meta data
  • reporting steps
  • reporting not-run steps, if test failed in between and remaining step not executed
  • step listeners
  • dryrun mode same as running scenario from BDD plain text file.

Just like reading from BDD or Feature file, RuntimeScenarioFactory can be useful to create scenario during execution in Java code. It will look like:

 import static com.qmetry.qaf.automation.step.client.RuntimeScenarioFactory.scenario;
 
 @MetaData("{'story':'testing for fun', 'module':'m1', 'storyId':'PRJ-111'}")
 public class SampleTestSuite extends TestNGTestCase {

     @MetaData("{'status':'InProgress', 'testCaseId':'TEST-1', 'issueId':'PRJ-112'}")
     @Test(description="a sample scenario", ...)
     public void testWithGivenWhenThen() {

        scenario().
        given("a precondition",()->{
                //write appropriate code...
        }).
        when("some action performed",()->{
                //write appropriate code...
        }).
        then("it should have expected outcome",()->{
                //write appropriate code...
        }).
        execute();
     }
 }

BDD Generator

When using Runtime Scenario, bdd plain text files or feature file are not required to run your tests. In case, if you required to have feature file for any reason you can generate feature files using Behavior Generator.

Tags: bdd scenario java