@@ -46,47 +46,47 @@ public static void setUp() {
4646 @ Test
4747 @ Tag ("IntegrationTest" )
4848 @ Order (1 )
49- public void PutBot () {
49+ public void testPutBot () {
5050 assertDoesNotThrow (() -> PutBot .createBot (lexClient , botName , intentName , intentVersion ));
5151 logger .info ("Test 1 passed" );
5252 }
5353
5454 @ Test
5555 @ Tag ("IntegrationTest" )
5656 @ Order (2 )
57- public void GetBots () {
57+ public void testGetBots () {
5858 assertDoesNotThrow (() -> GetBots .getAllBots (lexClient ));
5959 logger .info ("Test 2 passed" );
6060 }
6161
6262 @ Test
6363 @ Tag ("IntegrationTest" )
6464 @ Order (3 )
65- public void GetIntent () {
65+ public void testGetIntent () {
6666 assertDoesNotThrow (() -> GetIntent .getSpecificIntent (lexClient , intentName , intentVersion ));
6767 logger .info ("Test 3 passed" );
6868 }
6969
7070 @ Test
7171 @ Tag ("IntegrationTest" )
7272 @ Order (4 )
73- public void GetSlotTypes () {
73+ public void testGetSlotTypes () {
7474 assertDoesNotThrow (() -> GetSlotTypes .getSlotsInfo (lexClient ));
7575 logger .info ("Test 4 passed" );
7676 }
7777
7878 @ Test
7979 @ Tag ("IntegrationTest" )
8080 @ Order (5 )
81- public void GetBotStatus () {
81+ public void testGetBotStatus () {
8282 assertDoesNotThrow (() -> GetBotStatus .getStatus (lexClient , botName ));
8383 logger .info ("Test 5 passed" );
8484 }
8585
8686 @ Test
8787 @ Tag ("IntegrationTest" )
8888 @ Order (6 )
89- public void DeleteBot () {
89+ public void testDeleteBot () {
9090 assertDoesNotThrow (() -> DeleteBot .deleteSpecificBot (lexClient , botName ));
9191 logger .info ("Test 6 passed" );
9292 }
0 commit comments