1 package org.codehaus.mojo.dashboard.report.plugin.configuration;
2
3 /*
4 * Copyright 2006 David Vicente
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18
19 import junit.framework.TestCase;
20
21 /**
22 * @author <a href="dvicente72@gmail.com">David Vicente</a>
23 *
24 */
25 public class ConfigurationTestCase extends TestCase
26 {
27
28 /* (non-Javadoc)
29 * @see junit.framework.TestCase#setUp()
30 */
31 protected void setUp() throws Exception
32 {
33 super.setUp();
34 }
35
36 /* (non-Javadoc)
37 * @see junit.framework.TestCase#tearDown()
38 */
39 protected void tearDown() throws Exception
40 {
41 super.tearDown();
42 }
43
44 /**
45 * Test method for {@link org.codehaus.mojo.dashboard.report.plugin.configuration.ConfigurationService#getConfiguration()}.
46 */
47 public final void testGetConfiguration()
48 {
49 fail( "Not yet implemented" ); // TODO
50 }
51
52 /**
53 * Test method for {@link org.codehaus.mojo.dashboard.report.plugin.configuration.ConfigurationService#getConfigFile()}.
54 */
55 public final void testGetConfigFile()
56 {
57 fail( "Not yet implemented" ); // TODO
58 }
59
60 /**
61 * Test method for {@link org.codehaus.mojo.dashboard.report.plugin.configuration.ConfigurationService#setConfigFile(java.lang.String)}.
62 */
63 public final void testSetConfigFile()
64 {
65 fail( "Not yet implemented" ); // TODO
66 }
67
68 /**
69 * Test method for {@link org.codehaus.mojo.dashboard.report.plugin.configuration.ConfigurationService#isValidConfig()}.
70 */
71 public final void testIsValidConfig()
72 {
73 fail( "Not yet implemented" ); // TODO
74 }
75
76 /**
77 * Test method for {@link org.codehaus.mojo.dashboard.report.plugin.configuration.ConfigurationService#getWarningMessages()}.
78 */
79 public final void testGetWarningMessages()
80 {
81 fail( "Not yet implemented" ); // TODO
82 }
83
84 }