|
| 1 | +/* |
| 2 | + * Copyright (C) 2023 Frank Schüssele ([email protected]) |
| 3 | + * Copyright (C) 2015 University of Freiburg |
| 4 | + * |
| 5 | + * This file is part of the ULTIMATE JUnit Helper Library. |
| 6 | + * |
| 7 | + * The ULTIMATE JUnit Helper Library is free software: you can redistribute it and/or modify |
| 8 | + * it under the terms of the GNU Lesser General Public License as published |
| 9 | + * by the Free Software Foundation, either version 3 of the License, or |
| 10 | + * (at your option) any later version. |
| 11 | + * |
| 12 | + * The ULTIMATE JUnit Helper Library is distributed in the hope that it will be useful, |
| 13 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | + * GNU Lesser General Public License for more details. |
| 16 | + * |
| 17 | + * You should have received a copy of the GNU Lesser General Public License |
| 18 | + * along with the ULTIMATE JUnit Helper Library. If not, see <http://www.gnu.org/licenses/>. |
| 19 | + * |
| 20 | + * Additional permission under GNU GPL version 3 section 7: |
| 21 | + * If you modify the ULTIMATE JUnit Helper Library, or any covered work, by linking |
| 22 | + * or combining it with Eclipse RCP (or a modified version of Eclipse RCP), |
| 23 | + * containing parts covered by the terms of the Eclipse Public License, the |
| 24 | + * licensors of the ULTIMATE JUnit Helper Library grant you additional permission |
| 25 | + * to convey the resulting work. |
| 26 | + */ |
| 27 | + |
| 28 | +package de.uni_freiburg.informatik.ultimate.test.junitextension.categories; |
| 29 | + |
| 30 | +/** |
| 31 | + * This class is used as a JUnit category marker. Tests in this category are excluded from the nightly regression tests, |
| 32 | + * e.g. because they are just made to run locally. |
| 33 | + * |
| 34 | + * @author Frank Schüssele ([email protected]) |
| 35 | + * |
| 36 | + */ |
| 37 | +public interface NoRegression { |
| 38 | + |
| 39 | +} |
0 commit comments