1 /*
2 * The Harness API. Details can be found at: http://harness.dyndns.org
3 * Copyright (C) 2000 - 2002, Marcel Schepers
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public License
7 * as published by the Free Software Foundation; either version 2.1
8 * of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free
17 * Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 * 02111-1307 USA
19 */
20 package net.sourceforge.harness.xml.jaxb.harness;
21
22 import net.sourceforge.harness.CheckFailedException;
23 import net.sourceforge.harness.RunException;
24 import net.sourceforge.harness.TestCase;
25
26 /**
27 * Test case for net.sourceforge.harness.jaxb.Author.
28 *
29 * <p><b>Usage:</b> <code>trivial</code>
30 *
31 * <p><b>History:</b>
32 * <ul>
33 * <li>20020406, Initial file</li>
34 * </ul>
35 *
36 * <p><b>CVS Information:</b><br>
37 * <i>
38 * $Date: 2003/01/24 10:10:22 $<br>
39 * $Revision: 1.4 $<br>
40 * $Author: mgl $<br>
41 * </i>
42 *
43 * @author <a href="mailto:mgl@users.sourceforge.net>Marcel Schepers</a>
44 */
45 public class ExecutionTestCase extends TestCase{
46
47 /**
48 * Implements the actual test code.
49 * Note: setup and tear down code required by the code under test is
50 * implemented in TestCase.postConstruct() and TestCase.preDestruct().
51 *
52 * @exception RunException indicating a test failure.
53 * @exception CheckFailedException indicating a assertion failure
54 */
55 public void run() throws RunException, CheckFailedException {
56 }
57
58 }