Package org.apache.openejb.junit.jee.statement

Examples of org.apache.openejb.junit.jee.statement.ShutingDownStatement


                    // don't use testClass since it can be another instance that the test one
                    new InjectStatement(base, test.getClass(), test, startingStatement).evaluate();
                }
            }, description.getTestClass());
        }
        return new ShutingDownStatement(startingStatement, startingStatement);
    }
View Full Code Here


        return startingStatement;
    }

    @Override
    protected Statement withAfterClasses(final Statement statement) {
        return new ShutingDownStatement(super.withAfterClasses(statement), startingStatement);
    }
View Full Code Here

TOP

Related Classes of org.apache.openejb.junit.jee.statement.ShutingDownStatement

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.