diff --git a/src/test/java/com/omertron/themoviedbapi/DebugTest.java b/src/test/java/com/omertron/themoviedbapi/DebugTest.java new file mode 100644 index 000000000..25ca85242 --- /dev/null +++ b/src/test/java/com/omertron/themoviedbapi/DebugTest.java @@ -0,0 +1,42 @@ +/* + * Copyright (c) 2004-2016 Stuart Boston + * + * This file is part of TheMovieDB API. + * + * TheMovieDB API is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * any later version. + * + * TheMovieDB API is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with TheMovieDB API. If not, see . + * + */ +package com.omertron.themoviedbapi; + +import org.junit.BeforeClass; +import org.junit.Test; + +/** + * Test case for Debugging + * + * @author Stuart + */ +public class DebugTest extends AbstractTests { + + @BeforeClass + public static void setUpClass() throws MovieDbException { + doConfiguration(); + } + + @Test + public void test() { + LOG.info(""); + } + +}