mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-15 08:59:01 +00:00
refactor: remove code smell java:S5786 (#2159)
https://sonarcloud.io/organizations/iluwatar/rules?open=java%3AS5786&rule_key=java%3AS5786
This commit is contained in:
@@ -34,12 +34,12 @@ import org.junit.jupiter.api.Test;
|
||||
/**
|
||||
* Test Album Selection and Album Listing
|
||||
*/
|
||||
public class AlbumListPageTest {
|
||||
class AlbumListPageTest {
|
||||
|
||||
private final AlbumListPage albumListPage = new AlbumListPage(new WebClient());
|
||||
|
||||
@BeforeEach
|
||||
public void setUp() {
|
||||
void setUp() {
|
||||
albumListPage.navigateToPage();
|
||||
}
|
||||
|
||||
|
||||
@@ -34,12 +34,12 @@ import org.junit.jupiter.api.Test;
|
||||
/**
|
||||
* Test Album Page Operations
|
||||
*/
|
||||
public class AlbumPageTest {
|
||||
class AlbumPageTest {
|
||||
|
||||
private final AlbumPage albumPage = new AlbumPage(new WebClient());
|
||||
|
||||
@BeforeEach
|
||||
public void setUp() {
|
||||
void setUp() {
|
||||
albumPage.navigateToPage();
|
||||
}
|
||||
|
||||
|
||||
@@ -34,12 +34,12 @@ import org.junit.jupiter.api.Test;
|
||||
/**
|
||||
* Test Login Page Object
|
||||
*/
|
||||
public class LoginPageTest {
|
||||
class LoginPageTest {
|
||||
|
||||
private final LoginPage loginPage = new LoginPage(new WebClient());
|
||||
|
||||
@BeforeEach
|
||||
public void setUp() {
|
||||
void setUp() {
|
||||
loginPage.navigateToPage();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user