-
Notifications
You must be signed in to change notification settings - Fork 246
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HSEARCH-4214 Disable tests requiring a single model dialect per major…
… when testing ES5.6
- Loading branch information
Showing
3 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
...ckend/elasticsearch/testsupport/categories/RequiresSingleModelDialectForMajorVersion.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* | ||
* Hibernate Search, full-text search for your domain model | ||
* | ||
* License: GNU Lesser General Public License (LGPL), version 2.1 or later | ||
* See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. | ||
*/ | ||
package org.hibernate.search.integrationtest.backend.elasticsearch.testsupport.categories; | ||
|
||
/** | ||
* JUnit category marker indicating that a test is only relevant | ||
* for Elasticsearch major versions where all minor versions | ||
* use the same model dialect. | ||
* <p> | ||
* It is not the case on ES 5 in particular, since 5.6 has a dialect | ||
* but 5.0, 5.1, etc. don't have one. | ||
*/ | ||
public class RequiresSingleModelDialectForMajorVersion { | ||
} |