1 package org.apache.commons.javaflow.bytecode.transformation.tests;
2
3 import junit.framework.TestCase;
4 import org.apache.commons.javaflow.Continuation;
5 import org.apache.commons.javaflow.bytecode.transformation.rewrite.DefaultConstructor;
6
7 public abstract class AbstractDefaultConstructorTestCase extends TestCase {
8
9 public void testInvoker() {
10 Runnable o = new DefaultConstructor();
11 Continuation c = Continuation.startWith(o);
12 assertTrue(c == null);
13 }
14 }