Updated test

master
Omertron 14 years ago
parent e05ec3f1b3
commit a68a1c72f8

@ -28,7 +28,7 @@
</scm> </scm>
<properties> <properties>
<skipTests>true</skipTests> <skipTests>false</skipTests>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<distribution.format>zip</distribution.format> <distribution.format>zip</distribution.format>

@ -22,10 +22,7 @@ import java.util.HashMap;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before; import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test; import org.junit.Test;
import com.moviejukebox.themoviedb.model.Category; import com.moviejukebox.themoviedb.model.Category;
@ -39,29 +36,17 @@ import com.moviejukebox.themoviedb.model.Person;
*/ */
public class TheMovieDbTest { public class TheMovieDbTest {
private static String apikey = ""; private static String apikey = "5a1a77e2eba8984804586122754f969f";
private TheMovieDb tmdb; private TheMovieDb tmdb;
public TheMovieDbTest() { public TheMovieDbTest() {
} }
@BeforeClass
public static void setUpClass() throws Exception {
}
@AfterClass
public static void tearDownClass() throws Exception {
}
@Before @Before
public void setUp() { public void setUp() {
tmdb = new TheMovieDb(apikey); tmdb = new TheMovieDb(apikey);
} }
@After
public void tearDown() {
}
@Test @Test
public void testGetApiKey() { public void testGetApiKey() {
assertEquals(apikey, tmdb.getApiKey()); assertEquals(apikey, tmdb.getApiKey());
@ -322,7 +307,7 @@ public class TheMovieDbTest {
assertEquals("585", movies.get(0).getId()); assertEquals("585", movies.get(0).getId());
assertEquals("tt0198781", movies.get(0).getImdb()); assertEquals("tt0198781", movies.get(0).getImdb());
assertEquals("Star Wars: Episode IV: A New Hope", movies.get(1).getTitle()); assertEquals("Star Wars: Episode IV - A New Hope", movies.get(1).getTitle());
assertEquals("11", movies.get(1).getId()); assertEquals("11", movies.get(1).getId());
assertEquals("tt0076759", movies.get(1).getImdb()); assertEquals("tt0076759", movies.get(1).getImdb());
@ -390,7 +375,7 @@ public class TheMovieDbTest {
} }
} }
assertEquals("Marco Pérez", person.getName()); assertEquals("Marco Pérez", person.getName());
assertEquals("260", person.getId()); assertEquals("260", person.getId());
} }

Loading…
Cancel
Save