Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Test class not found in selected project

Currently I am developing a simple program using Cucumber that will test logging in of a user on a website.

Here is my TestRunner file:

package cucumberTest;

import org.junit.runner.RunWith;
import cucumber.api.CucumberOptions;
import cucumber.api.junit.Cucumber;

@RunWith(Cucumber.class)
@CucumberOptions(features = "Feature")

public class TestRunner {

}

I also have the cucumber file as LogIn_Test.feature as follows:

Feature: Login Action

Scenario: Successful Login with Valid Credentials
    Given User is on Home Page
    When User Navigate to LogIn Page
    And User enters UserName and Password
    Then Message displayed Login Successfully

Scenario: Successful LogOut
    When User LogOut from the Application
    Then Message displayed LogOut Successfully

But whenever I try to run the TestRunner class as a JUnit test, I get the error:

Test class not found in selected project.

like image 500
Viratan Avatar asked Sep 20 '25 12:09

Viratan


1 Answers

you should to specify the cucumber feature file:

@RunWith(Cucumber.class)
@CucumberOptions(features = "classpath:cucumberTest/LogIn_Test.feature")
public class TestRunner {

}

make sure you have placed it on the resource folder under the same path as the package name, ie: workspace\project-name\src\test\resources\cucumberTest\

like image 180
Paizo Avatar answered Sep 22 '25 03:09

Paizo