001/* 002 * Copyright 2015-2020 the original author or authors 003 * 004 * This software is licensed under the Apache License, Version 2.0, 005 * the GNU Lesser General Public License version 2 or later ("LGPL") 006 * and the WTFPL. 007 * You may choose either license to govern your use of this software only 008 * upon the condition that you accept all of the terms of either 009 * the Apache License 2.0, the LGPL 2.1+ or the WTFPL. 010 */ 011package org.minidns.integrationtest; 012 013import java.lang.annotation.ElementType; 014import java.lang.annotation.Retention; 015import java.lang.annotation.RetentionPolicy; 016import java.lang.annotation.Target; 017 018@Retention(RetentionPolicy.RUNTIME) 019@Target(ElementType.METHOD) 020public @interface IntegrationTest { 021 Class<?> expected() default Class.class; 022}