Author: jlaskowski
Date: Mon Nov 19 16:10:34 2007
New Revision: 596493
URL: http://svn.apache.org/viewvc?rev=596493&view=rev
Log:
Extend TestCase - it works once executed from within the module, neither does
it when executed in the main build
Modified:
openejb/trunk/openejb3/examples/interceptors/src/test/java/org/apache/openejb/examples/interceptors/FullyInterceptedTest.java
Modified:
openejb/trunk/openejb3/examples/interceptors/src/test/java/org/apache/openejb/examples/interceptors/FullyInterceptedTest.java
URL:
http://svn.apache.org/viewvc/openejb/trunk/openejb3/examples/interceptors/src/test/java/org/apache/openejb/examples/interceptors/FullyInterceptedTest.java?rev=596493&r1=596492&r2=596493&view=diff
==============================================================================
---
openejb/trunk/openejb3/examples/interceptors/src/test/java/org/apache/openejb/examples/interceptors/FullyInterceptedTest.java
(original)
+++
openejb/trunk/openejb3/examples/interceptors/src/test/java/org/apache/openejb/examples/interceptors/FullyInterceptedTest.java
Mon Nov 19 16:10:34 2007
@@ -23,6 +23,8 @@
import javax.naming.Context;
import javax.naming.InitialContext;
+import junit.framework.TestCase;
+
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
@@ -30,7 +32,7 @@
/**
* @version $Rev$ $Date$
*/
-public class FullyInterceptedTest {
+public class FullyInterceptedTest extends TestCase {
private InitialContext initCtx;