EMMA Coverage Report (generated Fri Jul 28 01:51:09 CEST 2006)
[all classes][org.jtiger.framework]

COVERAGE SUMMARY FOR SOURCE FILE [TearDownException.java]

nameclass, %method, %block, %line, %
TearDownException.java100% (1/1)100% (4/4)100% (16/16)100% (8/8)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class TearDownException100% (1/1)100% (4/4)100% (16/16)100% (8/8)
TearDownException (): void 100% (1/1)100% (3/3)100% (2/2)
TearDownException (String): void 100% (1/1)100% (4/4)100% (2/2)
TearDownException (String, Throwable): void 100% (1/1)100% (5/5)100% (2/2)
TearDownException (Throwable): void 100% (1/1)100% (4/4)100% (2/2)

1/*
2 * JTiger Unit Testing Framework for J2SE 1.5
3 * Copyright (C) 2005 Tony Morris
4 *
5 * This software is licenced under the
6 * Common Public Licence version 1.0
7 * http://www.opensource.org/licenses/cpl1.0.php
8 *
9 * You received a copy of this licence with this software.
10 */
11package org.jtiger.framework;
12 
13/**
14 * An exception that may be thrown during the tearing down of a test case.
15 *
16 * @see TearDown
17 * @see SetUpTearDown
18 * @author %javadoc.author.tag%
19 * @version %version%<br/>
20 *          <i>Build Number %build.number%</i><br/>
21 *          <i>Build Time %build.time% CET (GMT + 1)</i>
22 */
23public final class TearDownException extends Exception
24{
25    /**
26     * Create a default <tt>TearDownException</tt>.
27     */
28    public TearDownException()
29    {
30 
31    }
32 
33    /**
34     * Create a <tt>TearDownException</tt> with the given message.
35     *
36     * @param message The message of the <tt>TearDownException</tt>.
37     */
38    public TearDownException(final String message)
39    {
40        super(message);
41    }
42 
43    /**
44     * Create a <tt>TearDownException</tt> with the given cause.
45     *
46     * @param cause The cause of the <tt>TearDownException</tt>.
47     */
48    public TearDownException(final Throwable cause)
49    {
50        super(cause);
51    }
52 
53    /**
54     * Create a <tt>TearDownException</tt> with the given message and cause.
55     *
56     * @param message The message of the <tt>TearDownException</tt>.
57     * @param cause The cause of the <tt>TearDownException</tt>.
58     */
59    public TearDownException(final String message, final Throwable cause)
60    {
61        super(message, cause);
62    }
63}

[all classes][org.jtiger.framework]
EMMA 2.0.5312 (C) Vladimir Roubtsov