1 /*
2 * Copyright (C) Christian Schulte, 2011-332
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * o Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 *
12 * o Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in
14 * the documentation and/or other materials provided with the
15 * distribution.
16 *
17 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
18 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
19 * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * $JOMC: ModulesTestSuite.xsl 3968 2011-12-05 04:32:36Z schulte2005 $
29 *
30 */
31 package org.jomc.model.test;
32
33 /**
34 * Test cases for class {@code org.jomc.model.Modules}.
35 *
36 * @author <a href="mailto:schulte2005@users.sourceforge.net">Christian Schulte</a>
37 * @version $JOMC: ModulesTestSuite.xsl 3968 2011-12-05 04:32:36Z schulte2005 $
38 */
39 public class ModulesTestSuite extends ModulesTest
40 {
41
42 /** Creates a new {@code ModulesTestSuite} instance. */
43 public ModulesTestSuite()
44 {
45 super();
46 }
47
48 /**
49 * Runs the {@code IMT0001} implementation test.
50 *
51 * @throws Exception if running the test fails.
52 *
53 * @see #testImplementation(java.lang.String)
54 */
55 @org.junit.Test public final void IMT0001() throws Exception
56 {
57 this.testImplementation( "IMT0001" );
58 }
59
60
61 /**
62 * Runs the {@code IMT0002} implementation test.
63 *
64 * @throws Exception if running the test fails.
65 *
66 * @see #testImplementation(java.lang.String)
67 */
68 @org.junit.Test public final void IMT0002() throws Exception
69 {
70 this.testImplementation( "IMT0002" );
71 }
72
73
74 /**
75 * Runs the {@code INT0001} instance test.
76 *
77 * @throws Exception if running the test fails.
78 *
79 * @see #testInstance(java.lang.String)
80 */
81 @org.junit.Test public final void INT0001() throws Exception
82 {
83 this.testInstance( "INT0001" );
84 }
85
86
87 /**
88 * Runs the {@code INT0002} instance test.
89 *
90 * @throws Exception if running the test fails.
91 *
92 * @see #testInstance(java.lang.String)
93 */
94 @org.junit.Test public final void INT0002() throws Exception
95 {
96 this.testInstance( "INT0002" );
97 }
98
99
100 /**
101 * Runs the {@code INT0003} instance test.
102 *
103 * @throws Exception if running the test fails.
104 *
105 * @see #testInstance(java.lang.String)
106 */
107 @org.junit.Test public final void INT0003() throws Exception
108 {
109 this.testInstance( "INT0003" );
110 }
111
112
113 /**
114 * Runs the {@code INT0004} instance test.
115 *
116 * @throws Exception if running the test fails.
117 *
118 * @see #testInstance(java.lang.String)
119 */
120 @org.junit.Test public final void INT0004() throws Exception
121 {
122 this.testInstance( "INT0004" );
123 }
124
125
126 }