org.axonframework.test.aggregate.StubAggregateLifecycleRule Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2010-2022. Axon Framework
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.axonframework.test.aggregate;
import org.junit.rules.*;
import org.junit.runner.*;
import org.junit.runners.model.*;
/**
* Implementation of StubAggregateLifecycle that can be used as an {@link org.junit.Rule} annotated method or field in a
* test class. In that case, the JUnit lifecycle will automatically register and deregister the {@link
* StubAggregateLifecycle}.
*
* Usage example:
*
* @Rule
* public StubAggregateLifecycleRule lifecycle = new StubAggregateLifecycleRule();
*
* @Test
* public void testMethod() {
* ... perform tests ...
*
* // get applied events from lifecycle to validate some more
* lifecycle.getAppliedEvents();
* }
*
*
* @deprecated in favor of {@link org.axonframework.test.aggregate.StubAggregateLifecycleExtension} to be used in
* combination with Junit 5
*/
@Deprecated
public class StubAggregateLifecycleRule extends StubAggregateLifecycle implements TestRule {
@Override
public Statement apply(Statement base, Description description) {
return new Statement() {
@Override
public void evaluate() throws Throwable {
activate();
try {
base.evaluate();
} finally {
close();
}
}
};
}
}