Cucumber Tutorial 2 – Setup a Basic Maven-Cucumber 5 -TestNG Project in Eclipse

*****Updated with latest version of Cucumber 5 *********

Cucumber 6 is on the way but many are still using Cucumber 1 ( info.cukes version). So in this post, I am going to explain An end to end basic Cucumber 5 maven project setup with Junit in Eclipse.

Step 1:- Setup Eclipse

Eclipse is an integrated development environment which can be used to develop Java programs. I am not going to explain installation of Eclipse in this post. It is very straight forward and little google can help you much better. If you have any difficulty in installation , feel free to contact me though mail.

We need two plugins for Eclipse in order to work with Cucumber projects:-

  1. Natural
  2. Cucumber Eclipse Plugin

Natural plugin is helpful in editing and maintaining BDD/ATDD files. The currently supported languages are Cucumber (Gherkin syntax) and JBehave.

Cucumber Eclipse Plugin is helpful as content assistance for feature file , syntax highlighting, pretty formatting and step definition wizard.

To install above plugins, go to Eclipse Marketplace (Help -> Eclipse Marketplace) . Now search both plugins one by one and click “Install” button. Plugin installation requires restart of Eclipse. I will suggest you to install both plugins one by one and restart eclipse.

Step 2 :- Create a Maven project and add required dependencies

You just need two dependencies for Cucumber-TestNG project”:-

  1. Cucumber-Java
  2. Cucumber-TestNG

Note:- Keep version of Cucumber-Java and Cucumber-TestNG same.

I believe creating a maven project in Eclipse will not be tough job for you. If you face any problem, refer this post.

Add above dependencies ( For this post, I am using Cucumber 4) in your pom.xml. Your pom.xml should look like as below:-


	4.0.0
	MavenCucumber4JunitSampleProject
	MavenCucumber4JunitSampleProject
	0.0.1-SNAPSHOT

	
		UTF-8
		1.8
		1.8
	

	
		
		
			io.cucumber
			cucumber-java
			5.6.0
		

		
		
			io.cucumber
			cucumber-testng
			5.6.0
		
	

You could see an extra <properties> tag in above example. That is to set Java version as 1.8 for this project. By default you see 1.5 Java version when you create a new maven project.

Step 3:- Create a feature file

Now create a simple feature file “src/test/resources“. A feature file has a file extension as “.feature“. This feature file contains acceptance scenarios in Gherkin language.

I have created a very simple feature file as below:-

Feature: This is a demo feature one

Scenario: This is first scenario
    Given Precondition is given
    When Something is done
    Then Something is expected
    
    
    Scenario: This is second scenario
    Given Another precondition is given
    When Something is done again
    Then Something is expected again

Step 4:- Generate Step definition

Right click on above feature file and Select “Run As – > Cucumber Feature”. It will generate step definitions of above steps. You will get output in console as below:-

Feb 12, 2020 10:23:56 AM cucumber.api.cli.Main run
WARNING: You are using deprecated Main class. Please use io.cucumber.core.cli.Main
Feature: This is a demo feature one

  Scenario: This is first scenario # /C:/Users/amomahaj/eclipse-workspace/MavenCucumber4TestNGSampleProject/src/test/resources/featureFiles/DemoFeature.feature:3
    Given Precondition is given    # null
    When Something is done         # null
    Then Something is expected     # null

  Scenario: This is second scenario     # /C:/Users/amomahaj/eclipse-workspace/MavenCucumber4TestNGSampleProject/src/test/resources/featureFiles/DemoFeature.feature:9
    Given Another precondition is given # null
    When Something is done again        # null
    Then Something is expected again    # null

Undefined scenarios:
/C:/Users/amomahaj/eclipse-workspace/MavenCucumber4TestNGSampleProject/src/test/resources/featureFiles/DemoFeature.feature:3 # This is first scenario
/C:/Users/amomahaj/eclipse-workspace/MavenCucumber4TestNGSampleProject/src/test/resources/featureFiles/DemoFeature.feature:9 # This is second scenario

2 Scenarios (2 undefined)
6 Steps (6 undefined)
0m0.169s


You can implement missing steps with the snippets below:

@Given("Precondition is given")
public void precondition_is_given() {
    // Write code here that turns the phrase above into concrete actions
    throw new cucumber.api.PendingException();
}

@When("Something is done")
public void something_is_done() {
    // Write code here that turns the phrase above into concrete actions
    throw new cucumber.api.PendingException();
}

@Then("Something is expected")
public void something_is_expected() {
    // Write code here that turns the phrase above into concrete actions
    throw new cucumber.api.PendingException();
}

@Given("Another precondition is given")
public void another_precondition_is_given() {
    // Write code here that turns the phrase above into concrete actions
    throw new cucumber.api.PendingException();
}

@When("Something is done again")
public void something_is_done_again() {
    // Write code here that turns the phrase above into concrete actions
    throw new cucumber.api.PendingException();
}

@Then("Something is expected again")
public void something_is_expected_again() {
    // Write code here that turns the phrase above into concrete actions
    throw new cucumber.api.PendingException();
}

You see a line in above output as “You can implement missing steps with the snippets below:“. Copy everything after that line and paste in to Java class. Create a package say “stepDefintions” under “src/test/java” and create a Java class say “DemoFeatureStepDef.java“. Paste generated step definition in this class.

Since we need to provide our own definition to step, I added a normal print statement in each step definition methods as below:-

package stepDefinitions;

import io.cucumber.java.en.Given;
import io.cucumber.java.en.Then;
import io.cucumber.java.en.When;

public class DemoFeatureStepDef {

	
	@Given("Precondition is given")
	public void precondition_is_given() {
	   System.out.println("Precondition is given");
	}

	@When("Something is done")
	public void something_is_done() {
	    System.out.println("Something is done");
	}

	@Then("Something is expected")
	public void something_is_expected() {
	    System.out.println("Something is expected");
	}

	@Given("Another precondition is given")
	public void another_precondition_is_given() {
	   System.out.println("Another precondition is given");
	}

	@When("Something is done again")
	public void something_is_done_again() {
	    System.out.println("Something is done again");
	}

	@Then("Something is expected again")
	public void something_is_expected_again() {
	    System.out.println("Something is expected again");
	}


}

Step 5:- Run Feature file

Now you are all set to run your test. Remember you need to run feature file not step definition file. You don’t need runner file as well. In fact, you don’t even require Junit or TestNG as of now. Just right click on feature file and select “Run As – > Cucumber Feature“. You will see output as below:-

Feb 12, 2020 10:30:31 AM cucumber.api.cli.Main run
WARNING: You are using deprecated Main class. Please use io.cucumber.core.cli.Main
Feature: This is a demo feature one

  Scenario: This is first scenario # /C:/Users/amomahaj/eclipse-workspace/MavenCucumber4TestNGSampleProject/src/test/resources/featureFiles/DemoFeature.feature:3
Precondition is given
    Given Precondition is given    # DemoFeatureStepDef.precondition_is_given()
Something is done
    When Something is done         # DemoFeatureStepDef.something_is_done()
Something is expected
    Then Something is expected     # DemoFeatureStepDef.something_is_expected()

  Scenario: This is second scenario     # /C:/Users/amomahaj/eclipse-workspace/MavenCucumber4TestNGSampleProject/src/test/resources/featureFiles/DemoFeature.feature:9
Another precondition is given
    Given Another precondition is given # DemoFeatureStepDef.another_precondition_is_given()
Something is done again
    When Something is done again        # DemoFeatureStepDef.something_is_done_again()
Something is expected again
    Then Something is expected again    # DemoFeatureStepDef.something_is_expected_again()

2 Scenarios (2 passed)
6 Steps (6 passed)
0m0.188s

Step 6:- Run Feature file using Runner class

Runner class is useful to run multiple feature files and you can do a lot of configurations. We will see those in upcoming post. As of now we are covering only a basic setup.

Create a package named say “runnerFiles” under “src/test/java“. Create a runner java class now as “RunTestNGTest.java“. You must create runner class name ending with word “Test” so that it can picked automatically while running through maven.

Content of Runner file will be as below:

package runnerFiles;

import io.cucumber.testng.AbstractTestNGCucumberTests;
import io.cucumber.testng.CucumberOptions;

@CucumberOptions(features = "src/test/resources/featureFiles", glue = "stepDefinitions")
public class RunTestNGTest extends AbstractTestNGCucumberTests {

}

Like JUnit, There is no @RunWith Annotation. We just need to extend AbstractTestNGCucumberTests to our runner class. AbstractTestNGCucumberTests class Runs each cucumber scenario found in the features as separated test. In @CucumberOptions annotation, feature attribute is used to pass path of feature file and glue attribute is to give path of step definitions. There are many if and but with this but stick to it as of now.

Now run above runner file as “Run As – > TestNG Test“. You should output as below:-

Note- You must install TestNG plugin in eclipse to run as a TestNG test.

[RemoteTestNG] detected TestNG version 6.14.3
Precondition is given
Something is done
Something is expected
Another precondition is given
Something is done again
Something is expected again
PASSED: runScenario("This is first scenario", "This is a demo feature one")
        Runs Cucumber Scenarios
PASSED: runScenario("This is second scenario", "This is a demo feature one")
        Runs Cucumber Scenarios

===============================================
    Default test
    Tests run: 2, Failures: 0, Skips: 0
===============================================


===============================================
Default suite
Total tests run: 2, Failures: 0, Skips: 0
===============================================

Step 7:- Run Feature file using maven commands

Right click on Project or pom.xml and select Run As -> Maven test. It will pick Runner class ending with “Test” and execute feature file during test phase of maven life cycle. You will see output contains:-

Running runnerFiles.RunTestNGTest
Configuring TestNG with: org.apache.maven.surefire.testng.conf.TestNG652Configurator@4dcbadb4
Precondition is given
Something is done
Something is expected
Another precondition is given
Something is done again
Something is expected again
Tests run: 2, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 2.358 sec

Results :

Tests run: 2, Failures: 0, Errors: 0, Skipped: 0

[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time:  11.028 s
[INFO] Finished at: 2020-02-12T21:20:03+05:30
[INFO] ------------------------------------------------------------------------

You can clone sample project from here.

If you have any doubt, feel free to comment below.
If you like my posts, please like, comment, share and subscribe.
#ThanksForReading
#HappyLearning

You can find all Selenium related post here.
You can find all API manual and automation related posts here.
You can find frequently asked Java Programs here.

2 thoughts on “Cucumber Tutorial 2 – Setup a Basic Maven-Cucumber 5 -TestNG Project in Eclipse

  1. Woww!!! after searching soo many sites, i found this with very clear explanation and updated code.
    Thank you sooo much

Leave a Reply

Your email address will not be published. Required fields are marked *