Invoke from TestCase - Cucumber

Hi,
I am not able to run the script through the Test Case with the below command for Cucumber feature file.
CucumberKW.runWithCucumberRunner(CucumberEARunner.class)

Can you please suggest how to proceed ?

my CucumberEARunner contains below code:
import org.junit.runner.RunWith
import cucumber.api.CucumberOptions
import cucumber.api.junit.Cucumber

@RunWith(Cucumber.class)
@CucumberOptions(features=“Include/features”, tags = “GMPA2”, glue = “”, plugin=“pretty”)

public class CucumberEARunner {
}