From f52dba02661800a0da9f8b9fd1e86dbf6061a78d Mon Sep 17 00:00:00 2001 From: KOSASIH Date: Sat, 31 Aug 2024 14:22:54 +0700 Subject: [PATCH] Create NexusInfinityCoreApplicationEndToEndTest.java --- .../NexusInfinityCoreApplicationEndToEndTest.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 end-to-end/NexusInfinityCoreApplicationEndToEndTest.java diff --git a/end-to-end/NexusInfinityCoreApplicationEndToEndTest.java b/end-to-end/NexusInfinityCoreApplicationEndToEndTest.java new file mode 100644 index 0000000..afd19f8 --- /dev/null +++ b/end-to-end/NexusInfinityCoreApplicationEndToEndTest.java @@ -0,0 +1,12 @@ +package com.nexusinfinitycore.endtoend; + +import com.nexusinfinitycore.main.NexusInfinityCoreApplication; +import io.cucumber.junit.Cucumber; +import io.cucumber.junit.CucumberOptions; +import org.junit.runner.RunWith; + +@RunWith(Cucumber.class) +@CucumberOptions(features = "classpath:features", glue = "com.nexusinfinitycore.endtoend.steps") +public class NexusInfinityCoreApplicationEndToEndTest { + // No test methods needed, as Cucumber will run the feature files +}