diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-02-29 15:06:59 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2016-02-29 15:07:52 +0100 |
commit | 48d5099ff593ac7ec66cbdf69572019cf952037d (patch) | |
tree | 99e90aee03d13040b214962fac1317d3c2bdf91a /sonar-testing-harness/src | |
parent | 076bed2e34e4ddac3ff1a071432cf1c6d9ccbfe2 (diff) | |
download | sonarqube-48d5099ff593ac7ec66cbdf69572019cf952037d.tar.gz sonarqube-48d5099ff593ac7ec66cbdf69572019cf952037d.zip |
Remove unused annotation @DbTests
Diffstat (limited to 'sonar-testing-harness/src')
-rw-r--r-- | sonar-testing-harness/src/main/java/org/sonar/test/DbTests.java | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/sonar-testing-harness/src/main/java/org/sonar/test/DbTests.java b/sonar-testing-harness/src/main/java/org/sonar/test/DbTests.java deleted file mode 100644 index 3287d88ce65..00000000000 --- a/sonar-testing-harness/src/main/java/org/sonar/test/DbTests.java +++ /dev/null @@ -1,27 +0,0 @@ -/* - * SonarQube - * Copyright (C) 2009-2016 SonarSource SA - * mailto:contact AT sonarsource DOT com - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 3 of the License, or (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - */ -package org.sonar.test; - -/** - * JUnit category declared on all the tests that interact with database. These tests - * are executed on all the supported DB, not only on the default embedded H2. - */ -public interface DbTests { -} |