Uncomment tests
This commit is contained in:
@@ -39,7 +39,6 @@ import static org.junit.Assert.assertTrue;
|
||||
import static org.junit.Assert.fail;
|
||||
import org.junit.Before;
|
||||
import org.junit.BeforeClass;
|
||||
import org.junit.Ignore;
|
||||
import org.junit.Test;
|
||||
|
||||
/**
|
||||
@@ -79,7 +78,7 @@ public class TmdbAccountTest extends AbstractTests {
|
||||
*
|
||||
* @throws com.omertron.themoviedbapi.MovieDbException
|
||||
*/
|
||||
@Ignore
|
||||
@Test
|
||||
public void testGetAccount() throws MovieDbException {
|
||||
LOG.info("getAccount");
|
||||
Account result = instance.getAccount(getSessionId());
|
||||
@@ -93,7 +92,7 @@ public class TmdbAccountTest extends AbstractTests {
|
||||
*
|
||||
* @throws com.omertron.themoviedbapi.MovieDbException
|
||||
*/
|
||||
@Ignore
|
||||
@Test
|
||||
public void testGetUserLists() throws MovieDbException {
|
||||
LOG.info("getUserLists");
|
||||
List<UserList> results = instance.getUserLists(getSessionId(), getAccountId());
|
||||
@@ -109,7 +108,7 @@ public class TmdbAccountTest extends AbstractTests {
|
||||
*
|
||||
* @throws com.omertron.themoviedbapi.MovieDbException
|
||||
*/
|
||||
@Ignore
|
||||
@Test
|
||||
public void testGetFavoriteMovies() throws MovieDbException {
|
||||
LOG.info("getFavoriteMovies");
|
||||
List<MovieBasic> results = instance.getFavoriteMovies(getSessionId(), getAccountId());
|
||||
@@ -125,7 +124,7 @@ public class TmdbAccountTest extends AbstractTests {
|
||||
*
|
||||
* @throws com.omertron.themoviedbapi.MovieDbException
|
||||
*/
|
||||
@Ignore
|
||||
@Test
|
||||
public void testGetFavoriteTv() throws MovieDbException {
|
||||
LOG.info("getFavoriteTv");
|
||||
List<TVBasic> results = instance.getFavoriteTv(getSessionId(), getAccountId());
|
||||
@@ -141,7 +140,7 @@ public class TmdbAccountTest extends AbstractTests {
|
||||
*
|
||||
* @throws com.omertron.themoviedbapi.MovieDbException
|
||||
*/
|
||||
@Ignore
|
||||
@Test
|
||||
public void testModifyFavoriteStatus() throws MovieDbException {
|
||||
LOG.info("modifyFavoriteStatus");
|
||||
|
||||
@@ -171,7 +170,7 @@ public class TmdbAccountTest extends AbstractTests {
|
||||
*
|
||||
* @throws com.omertron.themoviedbapi.MovieDbException
|
||||
*/
|
||||
@Ignore
|
||||
@Test
|
||||
public void testGetRatedMovies() throws MovieDbException {
|
||||
LOG.info("getRatedMovies");
|
||||
List<MovieBasic> results = instance.getRatedMovies(getSessionId(), getAccountId(), null, null, null);
|
||||
@@ -184,7 +183,7 @@ public class TmdbAccountTest extends AbstractTests {
|
||||
*
|
||||
* @throws com.omertron.themoviedbapi.MovieDbException
|
||||
*/
|
||||
@Ignore
|
||||
@Test
|
||||
public void testGetRatedTV() throws MovieDbException {
|
||||
LOG.info("getRatedTV");
|
||||
List<TVBasic> results = instance.getRatedTV(getSessionId(), getAccountId(), null, null, null);
|
||||
@@ -200,7 +199,7 @@ public class TmdbAccountTest extends AbstractTests {
|
||||
*
|
||||
* @throws com.omertron.themoviedbapi.MovieDbException
|
||||
*/
|
||||
@Ignore
|
||||
@Test
|
||||
public void testGetWatchListMovie() throws MovieDbException {
|
||||
LOG.info("getWatchListMovie");
|
||||
List<MovieBasic> results = instance.getWatchListMovie(getSessionId(), getAccountId(), null, null, null);
|
||||
@@ -232,7 +231,7 @@ public class TmdbAccountTest extends AbstractTests {
|
||||
*
|
||||
* @throws com.omertron.themoviedbapi.MovieDbException
|
||||
*/
|
||||
@Ignore
|
||||
@Test
|
||||
public void testModifyWatchList() throws MovieDbException {
|
||||
LOG.info("modifyWatchList");
|
||||
|
||||
@@ -262,7 +261,7 @@ public class TmdbAccountTest extends AbstractTests {
|
||||
*
|
||||
* @throws com.omertron.themoviedbapi.MovieDbException
|
||||
*/
|
||||
@Ignore
|
||||
@Test
|
||||
public void testGetGuestRatedMovies() throws MovieDbException {
|
||||
LOG.info("getGuestRatedMovies");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user