50 lines
1.0 KiB
Plaintext
50 lines
1.0 KiB
Plaintext
== Why is this an issue?
|
|
|
|
Overriding a parent class method prevents that method from being called unless an explicit ``++super++`` call is made in the overriding method. In some cases not calling the ``++super++`` method is acceptable, but not with ``++setUp++`` and ``++tearDown++`` in a JUnit 3 ``++TestCase++``.
|
|
|
|
|
|
=== Noncompliant code example
|
|
|
|
[source,java]
|
|
----
|
|
public class MyClassTest extends MyAbstractTestCase {
|
|
|
|
private MyClass myClass;
|
|
@Override
|
|
protected void setUp() throws Exception { // Noncompliant
|
|
myClass = new MyClass();
|
|
}
|
|
----
|
|
|
|
|
|
=== Compliant solution
|
|
|
|
[source,java]
|
|
----
|
|
public class MyClassTest extends MyAbstractTestCase {
|
|
|
|
private MyClass myClass;
|
|
@Override
|
|
protected void setUp() throws Exception {
|
|
super.setUp();
|
|
myClass = new MyClass();
|
|
}
|
|
----
|
|
|
|
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
|
|
'''
|
|
== Implementation Specification
|
|
(visible only on this page)
|
|
|
|
include::message.adoc[]
|
|
|
|
'''
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::comments-and-links.adoc[]
|
|
endif::env-github,rspecator-view[]
|