Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cucumber-tutorial
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kyle Muldoon
cucumber-tutorial
Commits
bdbfa67a
Commit
bdbfa67a
authored
4 years ago
by
Kyle Muldoon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial commit, created cucumber project with maven
parent
da90d9d6
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
77 additions
and
0 deletions
+77
-0
pom.xml
pom.xml
+55
-0
RunCucumberTest.java
src/test/java/hellocucumber/RunCucumberTest.java
+11
-0
StepDefinitions.java
src/test/java/hellocucumber/StepDefinitions.java
+11
-0
.gitkeep
src/test/resources/hellocucumber/.gitkeep
+0
-0
No files found.
pom.xml
0 → 100644
View file @
bdbfa67a
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns=
"http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<groupId>
hellocucumber
</groupId>
<artifactId>
hellocucumber
</artifactId>
<version>
1.0.0-SNAPSHOT
</version>
<packaging>
jar
</packaging>
<properties>
<cucumber.version>
6.8.1
</cucumber.version>
<junit.version>
4.13
</junit.version>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>
io.cucumber
</groupId>
<artifactId>
cucumber-java
</artifactId>
<version>
${cucumber.version}
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
io.cucumber
</groupId>
<artifactId>
cucumber-junit
</artifactId>
<version>
${cucumber.version}
</version>
<scope>
test
</scope>
</dependency>
<dependency>
<groupId>
junit
</groupId>
<artifactId>
junit
</artifactId>
<version>
${junit.version}
</version>
<scope>
test
</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.8.1
</version>
<configuration>
<encoding>
UTF-8
</encoding>
<source>
1.8
</source>
<target>
1.8
</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
This diff is collapsed.
Click to expand it.
src/test/java/hellocucumber/RunCucumberTest.java
0 → 100644
View file @
bdbfa67a
package
hellocucumber
;
import
io.cucumber.junit.Cucumber
;
import
io.cucumber.junit.CucumberOptions
;
import
org.junit.runner.RunWith
;
@RunWith
(
Cucumber
.
class
)
@CucumberOptions
(
plugin
=
{
"pretty"
})
public
class
RunCucumberTest
{
}
This diff is collapsed.
Click to expand it.
src/test/java/hellocucumber/StepDefinitions.java
0 → 100644
View file @
bdbfa67a
package
hellocucumber
;
import
io.cucumber.java.en.Given
;
import
io.cucumber.java.en.Then
;
import
io.cucumber.java.en.When
;
import
static
org
.
junit
.
Assert
.*;
public
class
StepDefinitions
{
}
This diff is collapsed.
Click to expand it.
src/test/resources/hellocucumber/.gitkeep
0 → 100644
View file @
bdbfa67a
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment