public class SignatureExceptionTest
extends TestCase
SignatureException
class constructors and methods.Constructor and Description |
---|
SignatureExceptionTest() |
Modifier and Type | Method and Description |
---|---|
void |
testSignatureException01()
Test for
SignatureException() constructor Assertion:
constructs SignatureException with no detail message |
void |
testSignatureException02()
Test for
SignatureException(String) constructor Assertion:
constructs SignatureException with detail message msg. |
void |
testSignatureException03()
Test for
SignatureException(String) constructor Assertion:
constructs SignatureException when msg is null |
void |
testSignatureException04()
Test for
SignatureException(Throwable) constructor
Assertion: constructs SignatureException when cause is
null |
void |
testSignatureException05()
Test for
SignatureException(Throwable) constructor
Assertion: constructs SignatureException when cause is not
null |
void |
testSignatureException06()
Test for
SignatureException(String, Throwable) constructor
Assertion: constructs SignatureException when cause is
null msg is null |
void |
testSignatureException07()
Test for
SignatureException(String, Throwable) constructor
Assertion: constructs SignatureException when cause is
null msg is not null |
void |
testSignatureException08()
Test for
SignatureException(String, Throwable) constructor
Assertion: constructs SignatureException when cause is not
null msg is null |
void |
testSignatureException09()
Test for
SignatureException(String, Throwable) constructor
Assertion: constructs SignatureException when cause is not
null msg is not null |
public void testSignatureException01()
SignatureException()
constructor Assertion:
constructs SignatureException with no detail messagepublic void testSignatureException02()
SignatureException(String)
constructor Assertion:
constructs SignatureException with detail message msg. Parameter
msg
is not null.public void testSignatureException03()
SignatureException(String)
constructor Assertion:
constructs SignatureException when msg
is nullpublic void testSignatureException04()
SignatureException(Throwable)
constructor
Assertion: constructs SignatureException when cause
is
nullpublic void testSignatureException05()
SignatureException(Throwable)
constructor
Assertion: constructs SignatureException when cause
is not
nullpublic void testSignatureException06()
SignatureException(String, Throwable)
constructor
Assertion: constructs SignatureException when cause
is
null msg
is nullpublic void testSignatureException07()
SignatureException(String, Throwable)
constructor
Assertion: constructs SignatureException when cause
is
null msg
is not nullpublic void testSignatureException08()
SignatureException(String, Throwable)
constructor
Assertion: constructs SignatureException when cause
is not
null msg
is nullpublic void testSignatureException09()
SignatureException(String, Throwable)
constructor
Assertion: constructs SignatureException when cause
is not
null msg
is not null