From 4d8ec8eafa9ac0f82769bc3add8caf60b01b4317 Mon Sep 17 00:00:00 2001 From: Ajay Kumar Movva Date: Thu, 1 Feb 2024 12:30:08 +0530 Subject: [PATCH] Added Dummy Commit Signed-off-by: Ajay Kumar Movva --- .../controllers/DummyTests.java | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 server/src/test/java/org/opensearch/ratelimitting/admissioncontrol/controllers/DummyTests.java 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; + } +}