From 7985ea67e5dc7c1276bcd4cdf5768d5e163b2214 Mon Sep 17 00:00:00 2001 From: Fabrice Lecomte Date: Thu, 25 Feb 2021 01:09:44 +0100 Subject: [PATCH] remove cucumber --- .idea/runConfigurations/All_Tests.xml | 1 - .idea/runConfigurations/Article_Tests.xml | 24 --- .idea/runConfigurations/Auth_Tests.xml | 24 --- .idea/runConfigurations/Citizen_Tests.xml | 24 --- .idea/runConfigurations/Comment_Tests.xml | 24 --- .../runConfigurations/Constitution_Tests.xml | 24 --- .idea/runConfigurations/Cucumber_Tests.xml | 19 --- .../Cucumber_Tests__offline_.xml | 24 --- .../Cucumber_with_tag__now.xml | 24 --- .idea/runConfigurations/Follow_Tests.xml | 24 --- .idea/runConfigurations/Integration_Tests.xml | 1 - .idea/runConfigurations/Mark_as__error.xml | 24 --- .idea/runConfigurations/Opinion_Tests.xml | 24 --- .../Unit_and_functional_tests.xml | 1 - .idea/runConfigurations/Vote_Tests.xml | 24 --- .idea/runConfigurations/Voter_Tests.xml | 23 --- .idea/runConfigurations/Workgroup_test.xml | 30 ---- build.gradle.kts | 3 - gradle.properties | 1 - .../fr/dcproject/application/Application.kt | 2 +- src/test/kotlin/CucumberTest.kt | 99 ------------ .../kotlin/integration/Workgroup routes.kt | 2 +- src/test/kotlin/steps/ArticleSteps.kt | 103 ------------ src/test/kotlin/steps/CitizenSteps.kt | 58 ------- src/test/kotlin/steps/ConstitutionSteps.kt | 109 ------------- src/test/kotlin/steps/FollowSteps.kt | 29 ---- src/test/kotlin/steps/KtorServerAuthSteps.kt | 26 ---- src/test/kotlin/steps/KtorServerContext.kt | 55 ------- .../kotlin/steps/KtorServerRequestSteps.kt | 69 -------- src/test/kotlin/steps/KtorServerRestSteps.kt | 66 -------- src/test/kotlin/steps/OpinionSteps.kt | 82 ---------- src/test/kotlin/steps/VoteSteps.kt | 33 ---- src/test/kotlin/steps/WorkgroupSteps.kt | 76 --------- src/test/resources/cucumber.properties | 1 - src/test/resources/feature/articles.feature | 55 ------- src/test/resources/feature/auth.feature | 52 ------- src/test/resources/feature/citizen.feature | 66 -------- src/test/resources/feature/comment.feature | 12 -- .../resources/feature/commentArticle.feature | 81 ---------- .../feature/commentConstitution.feature | 32 ---- .../resources/feature/constitution.feature | 37 ----- .../resources/feature/followArticle.feature | 43 ----- .../feature/followConstitution.feature | 43 ----- src/test/resources/feature/opinion.feature | 75 --------- src/test/resources/feature/vote.feature | 69 -------- src/test/resources/feature/workgroup.feature | 147 ------------------ 46 files changed, 2 insertions(+), 1863 deletions(-) delete mode 100644 .idea/runConfigurations/Article_Tests.xml delete mode 100644 .idea/runConfigurations/Auth_Tests.xml delete mode 100644 .idea/runConfigurations/Citizen_Tests.xml delete mode 100644 .idea/runConfigurations/Comment_Tests.xml delete mode 100644 .idea/runConfigurations/Constitution_Tests.xml delete mode 100644 .idea/runConfigurations/Cucumber_Tests.xml delete mode 100644 .idea/runConfigurations/Cucumber_Tests__offline_.xml delete mode 100644 .idea/runConfigurations/Cucumber_with_tag__now.xml delete mode 100644 .idea/runConfigurations/Follow_Tests.xml delete mode 100644 .idea/runConfigurations/Mark_as__error.xml delete mode 100644 .idea/runConfigurations/Opinion_Tests.xml delete mode 100644 .idea/runConfigurations/Vote_Tests.xml delete mode 100644 .idea/runConfigurations/Voter_Tests.xml delete mode 100644 .idea/runConfigurations/Workgroup_test.xml delete mode 100644 src/test/kotlin/CucumberTest.kt delete mode 100644 src/test/kotlin/steps/ArticleSteps.kt delete mode 100644 src/test/kotlin/steps/CitizenSteps.kt delete mode 100644 src/test/kotlin/steps/ConstitutionSteps.kt delete mode 100644 src/test/kotlin/steps/FollowSteps.kt delete mode 100644 src/test/kotlin/steps/KtorServerAuthSteps.kt delete mode 100644 src/test/kotlin/steps/KtorServerContext.kt delete mode 100644 src/test/kotlin/steps/KtorServerRequestSteps.kt delete mode 100644 src/test/kotlin/steps/KtorServerRestSteps.kt delete mode 100644 src/test/kotlin/steps/OpinionSteps.kt delete mode 100644 src/test/kotlin/steps/VoteSteps.kt delete mode 100644 src/test/kotlin/steps/WorkgroupSteps.kt delete mode 100644 src/test/resources/cucumber.properties delete mode 100644 src/test/resources/feature/articles.feature delete mode 100644 src/test/resources/feature/auth.feature delete mode 100644 src/test/resources/feature/citizen.feature delete mode 100644 src/test/resources/feature/comment.feature delete mode 100644 src/test/resources/feature/commentArticle.feature delete mode 100644 src/test/resources/feature/commentConstitution.feature delete mode 100644 src/test/resources/feature/constitution.feature delete mode 100644 src/test/resources/feature/followArticle.feature delete mode 100644 src/test/resources/feature/followConstitution.feature delete mode 100644 src/test/resources/feature/opinion.feature delete mode 100644 src/test/resources/feature/vote.feature delete mode 100644 src/test/resources/feature/workgroup.feature diff --git a/.idea/runConfigurations/All_Tests.xml b/.idea/runConfigurations/All_Tests.xml index cb4a02c..1f251d0 100644 --- a/.idea/runConfigurations/All_Tests.xml +++ b/.idea/runConfigurations/All_Tests.xml @@ -25,7 +25,6 @@ - diff --git a/.idea/runConfigurations/Article_Tests.xml b/.idea/runConfigurations/Article_Tests.xml deleted file mode 100644 index a5e337b..0000000 --- a/.idea/runConfigurations/Article_Tests.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/runConfigurations/Auth_Tests.xml b/.idea/runConfigurations/Auth_Tests.xml deleted file mode 100644 index 7778a6e..0000000 --- a/.idea/runConfigurations/Auth_Tests.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/runConfigurations/Citizen_Tests.xml b/.idea/runConfigurations/Citizen_Tests.xml deleted file mode 100644 index 94e6a10..0000000 --- a/.idea/runConfigurations/Citizen_Tests.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/runConfigurations/Comment_Tests.xml b/.idea/runConfigurations/Comment_Tests.xml deleted file mode 100644 index 0f3f764..0000000 --- a/.idea/runConfigurations/Comment_Tests.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/runConfigurations/Constitution_Tests.xml b/.idea/runConfigurations/Constitution_Tests.xml deleted file mode 100644 index bdfcb54..0000000 --- a/.idea/runConfigurations/Constitution_Tests.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/runConfigurations/Cucumber_Tests.xml b/.idea/runConfigurations/Cucumber_Tests.xml deleted file mode 100644 index 899bb0d..0000000 --- a/.idea/runConfigurations/Cucumber_Tests.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/.idea/runConfigurations/Cucumber_Tests__offline_.xml b/.idea/runConfigurations/Cucumber_Tests__offline_.xml deleted file mode 100644 index 6416bda..0000000 --- a/.idea/runConfigurations/Cucumber_Tests__offline_.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/runConfigurations/Cucumber_with_tag__now.xml b/.idea/runConfigurations/Cucumber_with_tag__now.xml deleted file mode 100644 index 5575b37..0000000 --- a/.idea/runConfigurations/Cucumber_with_tag__now.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/runConfigurations/Follow_Tests.xml b/.idea/runConfigurations/Follow_Tests.xml deleted file mode 100644 index e5bfa6a..0000000 --- a/.idea/runConfigurations/Follow_Tests.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/runConfigurations/Integration_Tests.xml b/.idea/runConfigurations/Integration_Tests.xml index 5129d9e..487e5a2 100644 --- a/.idea/runConfigurations/Integration_Tests.xml +++ b/.idea/runConfigurations/Integration_Tests.xml @@ -2,7 +2,6 @@ -