-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update fix add a dummy test Signed-off-by: Subhobrata Dey <[email protected]> (cherry picked from commit c61c925) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
cf50029
commit 35218c5
Showing
2 changed files
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
...ote-monitor-plugin/src/test/java/org/opensearch/alerting/SampleRemoteMonitorPluginIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
* Copyright OpenSearch Contributors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package org.opensearch.alerting; | ||
|
||
import org.junit.Assert; | ||
import org.opensearch.test.OpenSearchIntegTestCase; | ||
|
||
public class SampleRemoteMonitorPluginIT extends OpenSearchIntegTestCase { | ||
|
||
public void testDummy() { | ||
Assert.assertTrue(true); | ||
} | ||
} |