mirror of
https://gitee.com/dromara/easy-es.git
synced 2025-12-06 17:18:57 +08:00
11 lines
320 B
Markdown
11 lines
320 B
Markdown
> Can be used to verify whether there is an index with the specified name
|
|
|
|
```java
|
|
@Test
|
|
public void testExistsIndex(){
|
|
String indexName = Document.class.getSimpleName().toLowerCase();
|
|
boolean existsIndex = documentMapper.existsIndex(indexName);
|
|
Assert.assertTrue(existsIndex);
|
|
}
|
|
```
|