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