We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2d6dd2 commit 00c8286Copy full SHA for 00c8286
x-pack/plugin/inference/src/test/java/org/elasticsearch/xpack/inference/services/InferenceServiceTestCase.java
@@ -0,0 +1,16 @@
1
+/*
2
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
3
+ * or more contributor license agreements. Licensed under the Elastic License
4
+ * 2.0; you may not use this file except in compliance with the Elastic License
5
+ * 2.0.
6
+ */
7
+
8
+package org.elasticsearch.xpack.inference.services;
9
10
+import org.elasticsearch.inference.InferenceService;
11
+import org.elasticsearch.test.ESTestCase;
12
13
+public abstract class InferenceServiceTestCase extends ESTestCase {
14
15
+ public abstract InferenceService createInferenceService();
16
+}
0 commit comments