Skip to content

006 - feat: Add cucumber tests first draft #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 29 commits into
base: feat-integration-e2e-api
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
73795a3
feat: Add integration components tests
ricardogarfe Jan 19, 2022
4767a00
feat: Run actions on all pull requests
ricardogarfe Jan 19, 2022
5af203e
feat: Extract service instance
ricardogarfe Jan 19, 2022
23d7dc8
feat: Add JaCoCo and sonarcloud.io configuration
ricardogarfe Jan 19, 2022
ef4cec1
feat: Publish API methods
ricardogarfe Jan 19, 2022
d48c83d
fix: fix html bugs
ricardogarfe Jan 19, 2022
a61a67c
fix: fix test workflow
ricardogarfe Jan 19, 2022
b0f8c02
fix: workflow from all branches
ricardogarfe Jan 19, 2022
a90d4ef
fix: Revert workflow workaround
ricardogarfe Jan 19, 2022
6a63cf6
feat: Divide tests execution
ricardogarfe Jan 19, 2022
2e14200
feat: Add cucumber tests first draft
ricardogarfe Jan 19, 2022
389ad4c
feat: Refactor cucumber runner test Class
ricardogarfe Jan 19, 2022
4e19288
feat: enable service and bdd test
ricardogarfe Dec 16, 2022
4a58388
feat: update ci workflow to build branches with main
ricardogarfe Jan 25, 2024
c929dd7
feat: update ci workflow to build branches with main
ricardogarfe Jan 25, 2024
6916006
feat: upgrade jdk to 17
ricardogarfe Jan 25, 2024
6ef8548
feat: Publish API methods
ricardogarfe Jan 19, 2022
1e29f83
fix: fix html bugs
ricardogarfe Jan 19, 2022
e86623a
fix: fix test workflow
ricardogarfe Jan 19, 2022
5d733c8
fix: workflow from all branches
ricardogarfe Jan 19, 2022
dadd916
fix: Revert workflow workaround
ricardogarfe Jan 19, 2022
7050632
feat: Divide tests execution
ricardogarfe Jan 19, 2022
8037ed0
feat: set maven-war-plugin version
ricardogarfe Jan 25, 2024
4aecbdb
Merge branch 'feat-integration-e2e-api' into feat-bdd-api
ricardogarfe Jan 25, 2024
ed43938
chore: enable run workflow manually
ricardogarfe Jun 19, 2024
f917098
Merge branch 'feat-integration-e2e-api' into feat-bdd-api
ricardogarfe Jun 19, 2024
518a441
feat: enable gitpod
ricardogarfe Jan 20, 2022
e28041a
Merge branch 'feat-integration-e2e-api' into feat-bdd-api
ricardogarfe Jun 21, 2024
1ff8adb
test: fix expected results
ricardogarfe Jun 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: Refactor cucumber runner test Class
  • Loading branch information
ricardogarfe committed Jan 19, 2022
commit 389ad4c3649373d8f2f77e4fd677c2294b773b30
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@
<!-- Excludes integration tests when unit tests are run. -->
<excludes>
<exclude>**/IT*.java</exclude>
<exclude>**/ITRunCucumberTest.java</exclude>
<exclude>**/ITCucumberRunner.java</exclude>
</excludes>
<properties>
<!-- Work around. Surefire does not include enough
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
@SelectClasspathResource("com/geekshubs/calculator/acceptance/api/ping.feature")
@ConfigurationParameter(key = PLUGIN_PROPERTY_NAME, value = "pretty")
@ConfigurationParameter(key = GLUE_PROPERTY_NAME, value = "com.geekshubs.calculator.aceptance.api")
public class ITRunCucumberTest {
public class ITCucumberRunner {
}