All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.testing.junit5.dynamictests.DynamicAfterEach Maven / Gradle / Ivy

/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.testing.junit5.dynamictests;

import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

/**
 * {@link org.junit.jupiter.api.AfterEach} equivalent.
 *
 * @author Chris Cranford
 */
@Retention( RUNTIME )
@Target( METHOD )
@Inherited
public @interface DynamicAfterEach {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy