BAEL-4783 fix package name

This commit is contained in:
Trixi Turny 2021-04-23 09:50:59 +01:00
parent c3b985584b
commit b31a927e4e
18 changed files with 20 additions and 21 deletions

View File

@ -35,7 +35,6 @@
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId> <artifactId>spring-boot-starter-web</artifactId>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId> <artifactId>spring-boot-starter-thymeleaf</artifactId>

View File

@ -1,4 +1,4 @@
package com.baeldung.cucumber_tags; package com.baeldung.cucumber.tags;
import org.springframework.boot.SpringApplication; import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.SpringBootApplication;

View File

@ -1,4 +1,4 @@
package com.baeldung.cucumber_tags.controller; package com.baeldung.cucumber.tags.controller;
import org.springframework.http.HttpStatus; import org.springframework.http.HttpStatus;

View File

@ -1,6 +1,6 @@
package com.baeldung.cucumber_tags.controller; package com.baeldung.cucumber.tags.controller;
import com.baeldung.cucumber_tags.service.RandomNumberGeneratorService; import com.baeldung.cucumber.tags.service.RandomNumberGeneratorService;
import lombok.Data; import lombok.Data;
import org.springframework.stereotype.Controller; import org.springframework.stereotype.Controller;
import org.springframework.ui.Model; import org.springframework.ui.Model;

View File

@ -1,4 +1,4 @@
package com.baeldung.cucumber_tags.service; package com.baeldung.cucumber.tags.service;
import java.util.concurrent.ThreadLocalRandom; import java.util.concurrent.ThreadLocalRandom;

View File

@ -1,4 +1,4 @@
package com.baeldung.cucumber_tags.acceptance; package com.baeldung.cucumber.tags.acceptance;
import io.cucumber.junit.platform.engine.Cucumber; import io.cucumber.junit.platform.engine.Cucumber;

View File

@ -1,7 +1,7 @@
package com.baeldung.cucumber_tags.acceptance.api.steps; package com.baeldung.cucumber.tags.acceptance.api.steps;
import com.baeldung.cucumber_tags.acceptance.commonutil.ScenarioContextApi; import com.baeldung.cucumber.tags.acceptance.commonutil.ScenarioContextApi;
import io.cucumber.java.en.Then; import io.cucumber.java.en.Then;
import io.cucumber.java.en.When; import io.cucumber.java.en.When;
import org.hamcrest.Matchers; import org.hamcrest.Matchers;

View File

@ -1,4 +1,4 @@
package com.baeldung.cucumber_tags.acceptance.commonutil; package com.baeldung.cucumber.tags.acceptance.commonutil;
import org.openqa.selenium.InvalidArgumentException; import org.openqa.selenium.InvalidArgumentException;

View File

@ -1,4 +1,4 @@
package com.baeldung.cucumber_tags.acceptance.commonutil; package com.baeldung.cucumber.tags.acceptance.commonutil;
import io.restassured.http.ContentType; import io.restassured.http.ContentType;
import io.restassured.module.mockmvc.response.MockMvcResponse; import io.restassured.module.mockmvc.response.MockMvcResponse;

View File

@ -1,4 +1,4 @@
package com.baeldung.cucumber_tags.acceptance.commonutil; package com.baeldung.cucumber.tags.acceptance.commonutil;
import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.chrome.ChromeDriver;

View File

@ -1,4 +1,4 @@
package com.baeldung.cucumber_tags.acceptance.commonutil; package com.baeldung.cucumber.tags.acceptance.commonutil;
import io.cucumber.java.After; import io.cucumber.java.After;

View File

@ -1,4 +1,4 @@
package com.baeldung.cucumber_tags.acceptance.commonutil; package com.baeldung.cucumber.tags.acceptance.commonutil;
import io.cucumber.java.Scenario; import io.cucumber.java.Scenario;

View File

@ -1,4 +1,4 @@
package com.baeldung.cucumber_tags.acceptance.ui.pages; package com.baeldung.cucumber.tags.acceptance.ui.pages;
import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebDriver;
import org.openqa.selenium.support.ui.WebDriverWait; import org.openqa.selenium.support.ui.WebDriverWait;

View File

@ -1,4 +1,4 @@
package com.baeldung.cucumber_tags.acceptance.ui.pages; package com.baeldung.cucumber.tags.acceptance.ui.pages;
import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement; import org.openqa.selenium.WebElement;

View File

@ -1,7 +1,7 @@
package com.baeldung.cucumber_tags.acceptance.ui.steps; package com.baeldung.cucumber.tags.acceptance.ui.steps;
import com.baeldung.cucumber_tags.acceptance.commonutil.ScenarioContextUI; import com.baeldung.cucumber.tags.acceptance.commonutil.ScenarioContextUI;
import com.baeldung.cucumber_tags.acceptance.ui.pages.RandomNumberGeneratorPage; import com.baeldung.cucumber.tags.acceptance.ui.pages.RandomNumberGeneratorPage;
import io.cucumber.java.en.And; import io.cucumber.java.en.And;
import io.cucumber.java.en.Given; import io.cucumber.java.en.Given;
import io.cucumber.java.en.Then; import io.cucumber.java.en.Then;
@ -9,7 +9,7 @@ import io.cucumber.java.en.When;
import org.openqa.selenium.support.PageFactory; import org.openqa.selenium.support.PageFactory;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import static com.baeldung.cucumber_tags.acceptance.ui.pages.Page.getPage; import static com.baeldung.cucumber.tags.acceptance.ui.pages.Page.getPage;
import static org.junit.Assert.assertTrue; import static org.junit.Assert.assertTrue;
public class RandomNumberGeneratorSteps { public class RandomNumberGeneratorSteps {

View File

@ -1,4 +1,4 @@
package com.baeldung.cucumber_tags.service; package com.baeldung.cucumber.tags.service;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;