From ed987dd051e6b17c5894c03631c7a58e9d765189 Mon Sep 17 00:00:00 2001 From: Stuart Boston Date: Mon, 2 Mar 2015 15:47:16 +0000 Subject: [PATCH] Tests & notes --- .../themoviedbapi/methods/_Method_List.txt | 4 ++-- .../themoviedbapi/methods/TmdbPeopleTest.java | 18 +++++++++--------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/main/java/com/omertron/themoviedbapi/methods/_Method_List.txt b/src/main/java/com/omertron/themoviedbapi/methods/_Method_List.txt index 20c105b60..a5b914583 100644 --- a/src/main/java/com/omertron/themoviedbapi/methods/_Method_List.txt +++ b/src/main/java/com/omertron/themoviedbapi/methods/_Method_List.txt @@ -90,11 +90,11 @@ Movies Networks (Done) /network/{id} This method is used to retrieve the basic information about a TV network. -People +People (Done) /person/{id} Get the general person information for a specific id /person/{id}/movie_credits Get the movie credits for a specific person id. /person/{id}/tv_credits Get the TV credits for a specific person id. -*** /person/{id}/combined_credits Get the combined (movie and TV) credits for a specific person id. +/person/{id}/combined_credits Get the combined (movie and TV) credits for a specific person id. /person/{id}/external_ids Get the external ids for a specific person id. /person/{id}/images Get the images for a specific person id. /person/{id}/tagged_images Get the images that have been tagged with a specific person id diff --git a/src/test/java/com/omertron/themoviedbapi/methods/TmdbPeopleTest.java b/src/test/java/com/omertron/themoviedbapi/methods/TmdbPeopleTest.java index 268623f4b..37696d629 100644 --- a/src/test/java/com/omertron/themoviedbapi/methods/TmdbPeopleTest.java +++ b/src/test/java/com/omertron/themoviedbapi/methods/TmdbPeopleTest.java @@ -90,7 +90,7 @@ public class TmdbPeopleTest extends AbstractTests { * * @throws MovieDbException */ -// @Test + @Test public void testGetPersonInfo() throws MovieDbException { LOG.info("getPersonInfo"); Person result; @@ -114,7 +114,7 @@ public class TmdbPeopleTest extends AbstractTests { * * @throws com.omertron.themoviedbapi.MovieDbException */ -// @Test + @Test public void testGetPersonMovieCredits() throws MovieDbException { LOG.info("getPersonMovieCredits"); String language = LANGUAGE_DEFAULT; @@ -134,7 +134,7 @@ public class TmdbPeopleTest extends AbstractTests { * * @throws com.omertron.themoviedbapi.MovieDbException */ -// @Test + @Test public void testGetPersonTVCredits() throws MovieDbException { LOG.info("getPersonTVCredits"); String language = LANGUAGE_DEFAULT; @@ -154,7 +154,7 @@ public class TmdbPeopleTest extends AbstractTests { * * @throws com.omertron.themoviedbapi.MovieDbException */ -// @Test + @Test public void testGetPersonCombinedCredits() throws MovieDbException { LOG.info("getPersonCombinedCredits"); String language = LANGUAGE_DEFAULT; @@ -175,7 +175,7 @@ public class TmdbPeopleTest extends AbstractTests { * * @throws com.omertron.themoviedbapi.MovieDbException */ -// @Test + @Test public void testGetPersonExternalIds() throws MovieDbException { LOG.info("getPersonExternalIds"); @@ -190,7 +190,7 @@ public class TmdbPeopleTest extends AbstractTests { * * @throws com.omertron.themoviedbapi.MovieDbException */ -// @Test + @Test public void testGetPersonImages() throws MovieDbException { LOG.info("getPersonImages"); @@ -206,7 +206,7 @@ public class TmdbPeopleTest extends AbstractTests { * * @throws com.omertron.themoviedbapi.MovieDbException */ -// @Test + @Test public void testGetPersonTaggedImages() throws MovieDbException { LOG.info("getPersonTaggedImages"); Integer page = null; @@ -258,7 +258,7 @@ public class TmdbPeopleTest extends AbstractTests { * * @throws com.omertron.themoviedbapi.MovieDbException */ -// @Test + @Test public void testGetPersonPopular() throws MovieDbException { LOG.info("getPersonPopular"); Integer page = null; @@ -276,7 +276,7 @@ public class TmdbPeopleTest extends AbstractTests { * * @throws com.omertron.themoviedbapi.MovieDbException */ -// @Test + @Test public void testGetPersonLatest() throws MovieDbException { LOG.info("getPersonLatest");