From 2dc61738c8bedf6636eac6019e2cc47e7a09318b Mon Sep 17 00:00:00 2001 From: Stuart Boston Date: Fri, 26 Feb 2016 09:08:29 +0000 Subject: [PATCH] Add empty test for debugging --- .../com/omertron/themoviedbapi/DebugTest.java | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 src/test/java/com/omertron/themoviedbapi/DebugTest.java 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(""); + } + +}