Tests & notes

This commit is contained in:
Stuart Boston
2015-03-02 15:47:16 +00:00
parent 0143f31bbc
commit ed987dd051
2 changed files with 11 additions and 11 deletions
@@ -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
@@ -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");