diff --git a/server/src/test/java/org/opensearch/ratelimitting/admissioncontrol/controllers/DummyTests.java b/server/src/test/java/org/opensearch/ratelimitting/admissioncontrol/controllers/DummyTests.java new file mode 100644 index 0000000000000..a4bae75c9c4ce --- /dev/null +++ b/server/src/test/java/org/opensearch/ratelimitting/admissioncontrol/controllers/DummyTests.java @@ -0,0 +1,17 @@ +/* + * SPDX-License-Identifier: Apache-2.0 + * + * The OpenSearch Contributors require contributions made to + * this file be licensed under the Apache-2.0 license or a + * compatible open source license. + */ + +package org.opensearch.ratelimitting.admissioncontrol.controllers; + +import org.opensearch.test.OpenSearchTestCase; + +public class DummyTests extends OpenSearchTestCase { + public void testDummyCase() { + assert true; + } +}