Skip to content

Commit

Permalink
Create NexusInfinityCoreApplicationEndToEndTest.java
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Aug 31, 2024
1 parent 9022031 commit f52dba0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions end-to-end/NexusInfinityCoreApplicationEndToEndTest.java
Original file line number Diff line number Diff line change
@@ -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
}

0 comments on commit f52dba0

Please sign in to comment.