@@ -44,7 +44,7 @@ public static void setUp() throws IOException {
4444 @ Test
4545 @ Tag ("IntegrationTest" )
4646 @ Order (1 )
47- public void helloTest () {
47+ public void testHello () {
4848 assertDoesNotThrow (() -> {
4949 CompletableFuture <Void > future = HelloOpenSearch .listVersionsAsync ();
5050 future .join ();
@@ -55,7 +55,7 @@ public void helloTest() {
5555 @ Test
5656 @ Tag ("IntegrationTest" )
5757 @ Order (2 )
58- public void createDomain () {
58+ public void testCreateDomain () {
5959 assertDoesNotThrow (() -> {
6060 CompletableFuture <String > future = openSearchActions .createNewDomainAsync (domainName );
6161 String domainId = future .join ();
@@ -68,7 +68,7 @@ public void createDomain() {
6868 @ Test
6969 @ Tag ("IntegrationTest" )
7070 @ Order (3 )
71- public void describeDomainTest () {
71+ public void testDescribeDomainTest () {
7272 assertDoesNotThrow (() -> {
7373 CompletableFuture <String > future = openSearchActions .describeDomainAsync (domainName );
7474 arn = future .join ();
@@ -79,7 +79,7 @@ public void describeDomainTest() {
7979 @ Test
8080 @ Tag ("IntegrationTest" )
8181 @ Order (4 )
82- public void listDomains () {
82+ public void testListDomains () {
8383 assertDoesNotThrow (() -> {
8484 CompletableFuture <List <DomainInfo >> future = openSearchActions .listAllDomainsAsync ();
8585 List <DomainInfo > domainInfoList = future .join ();
@@ -93,7 +93,7 @@ public void listDomains() {
9393 @ Test
9494 @ Tag ("IntegrationTest" )
9595 @ Order (5 )
96- public void domainTagTest () {
96+ public void testDomainTagTest () {
9797 assertDoesNotThrow (() -> {
9898 CompletableFuture <AddTagsResponse > future = openSearchActions .addDomainTagsAsync (arn );
9999 future .join ();
@@ -105,7 +105,7 @@ public void domainTagTest() {
105105 @ Test
106106 @ Tag ("IntegrationTest" )
107107 @ Order (6 )
108- public void domainListTagsTest () {
108+ public void testDomainListTagsTest () {
109109 assertDoesNotThrow (() -> {
110110 CompletableFuture <ListTagsResponse > future = openSearchActions .listDomainTagsAsync (arn );
111111 future .join ();
@@ -117,7 +117,7 @@ public void domainListTagsTest() {
117117 @ Test
118118 @ Tag ("IntegrationTest" )
119119 @ Order (7 )
120- public void domainDelTest () {
120+ public void testDomainDelTest () {
121121 assertDoesNotThrow (() -> {
122122 CompletableFuture <DeleteDomainResponse > future = openSearchActions .deleteSpecificDomainAsync (domainName );
123123 future .join ();
0 commit comments