/* | |
* Copyright 2015-2023 the original author or authors. | |
* | |
* All rights reserved. This program and the accompanying materials are | |
* made available under the terms of the Eclipse Public License v2.0 which | |
* accompanies this distribution and is available at | |
* | |
* https://www.eclipse.org/legal/epl-v20.html | |
*/ | |
package example.callbacks; | |
// tag::user_guide[] | |
import static example.callbacks.Logger.afterEachCallback; | |
import static example.callbacks.Logger.beforeEachCallback; | |
import org.junit.jupiter.api.extension.AfterEachCallback; | |
import org.junit.jupiter.api.extension.BeforeEachCallback; | |
import org.junit.jupiter.api.extension.ExtensionContext; | |
public class Extension2 implements BeforeEachCallback, AfterEachCallback { | |
public void beforeEach(ExtensionContext context) { | |
beforeEachCallback(this); | |
} | |
public void afterEach(ExtensionContext context) { | |
afterEachCallback(this); | |
} | |
} | |
// end::user_guide[] | |