|
@@ -0,0 +1,17 @@
|
|
|
+/*
|
|
|
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
|
+ * or more contributor license agreements. Licensed under the Elastic License
|
|
|
+ * 2.0; you may not use this file except in compliance with the Elastic License
|
|
|
+ * 2.0.
|
|
|
+ */
|
|
|
+
|
|
|
+package org.elasticsearch.xpack.esql.qa.multi_node;
|
|
|
+
|
|
|
+import org.elasticsearch.xpack.esql.qa.rest.EsqlSpecTestCase;
|
|
|
+import org.elasticsearch.xpack.ql.CsvSpecReader.CsvTestCase;
|
|
|
+
|
|
|
+public class EsqlSpecIT extends EsqlSpecTestCase {
|
|
|
+ public EsqlSpecIT(String fileName, String groupName, String testName, Integer lineNumber, CsvTestCase testCase) {
|
|
|
+ super(fileName, groupName, testName, lineNumber, testCase);
|
|
|
+ }
|
|
|
+}
|