Removed AvoidStarImport Rule
Added JavaDocType Rule
This commit is contained in:
@ -23,15 +23,17 @@
|
||||
package com.iluwatar.pageobject;
|
||||
|
||||
|
||||
import static org.junit.Assert.assertTrue;
|
||||
|
||||
import com.gargoylesoftware.htmlunit.WebClient;
|
||||
import com.iluwatar.pageobject.pages.AlbumListPage;
|
||||
import com.iluwatar.pageobject.pages.AlbumPage;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.junit.Assert.assertTrue;
|
||||
|
||||
|
||||
/**
|
||||
* Test Album Selection and Album Listing
|
||||
*/
|
||||
public class AlbumListPageTest {
|
||||
|
||||
private AlbumListPage albumListPage = new AlbumListPage(new WebClient());
|
||||
|
@ -22,14 +22,17 @@
|
||||
*/
|
||||
package com.iluwatar.pageobject;
|
||||
|
||||
import static org.junit.Assert.assertTrue;
|
||||
|
||||
import com.gargoylesoftware.htmlunit.WebClient;
|
||||
import com.iluwatar.pageobject.pages.AlbumListPage;
|
||||
import com.iluwatar.pageobject.pages.AlbumPage;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.junit.Assert.assertTrue;
|
||||
|
||||
/**
|
||||
* Test Album Page Operations
|
||||
*/
|
||||
public class AlbumPageTest {
|
||||
|
||||
private AlbumPage albumPage = new AlbumPage(new WebClient());
|
||||
|
@ -22,14 +22,17 @@
|
||||
*/
|
||||
package com.iluwatar.pageobject;
|
||||
|
||||
import static org.junit.Assert.assertTrue;
|
||||
|
||||
import com.gargoylesoftware.htmlunit.WebClient;
|
||||
import com.iluwatar.pageobject.pages.AlbumListPage;
|
||||
import com.iluwatar.pageobject.pages.LoginPage;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.junit.Assert.assertTrue;
|
||||
|
||||
/**
|
||||
* Test Login Page Object
|
||||
*/
|
||||
public class LoginPageTest {
|
||||
|
||||
private LoginPage loginPage = new LoginPage(new WebClient());
|
||||
|
Reference in New Issue
Block a user