File tree Expand file tree Collapse file tree
javav2/example_code/mediastore/src/test/java Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -64,31 +64,31 @@ public static void setUp() throws URISyntaxException {
6464 @ Test
6565 @ Tag ("IntegrationTest" )
6666 @ Order (1 )
67- public void CreateContainer () {
67+ public void testCreateContainer () {
6868 assertDoesNotThrow (() -> CreateContainer .createMediaContainer (mediaStoreClient , containerName ));
6969 logger .info ("Test 1 passed" );
7070 }
7171
7272 @ Test
7373 @ Tag ("IntegrationTest" )
7474 @ Order (2 )
75- public void DescribeContainer () {
75+ public void testDescribeContainer () {
7676 assertDoesNotThrow (() -> DescribeContainer .checkContainer (mediaStoreClient , containerName ));
7777 logger .info ("Test 2 passed" );
7878 }
7979
8080 @ Test
8181 @ Tag ("IntegrationTest" )
8282 @ Order (3 )
83- public void ListContainers () {
83+ public void testListContainers () {
8484 assertDoesNotThrow (() -> ListContainers .listAllContainers (mediaStoreClient ));
8585 logger .info ("Test 3 passed" );
8686 }
8787
8888 @ Test
8989 @ Tag ("IntegrationTest" )
9090 @ Order (4 )
91- public void ListItems () {
91+ public void testListItems () {
9292 assertDoesNotThrow (() -> ListItems .listAllItems (mediaStoreData , containerName ));
9393 logger .info ("Test 5 passed" );
9494 }
@@ -97,7 +97,7 @@ public void ListItems() {
9797 @ Test
9898 @ Tag ("IntegrationTest" )
9999 @ Order (5 )
100- public void DeleteContainer () throws InterruptedException {
100+ public void testDeleteContainer () throws InterruptedException {
101101 System .out .println ("Wait 1 min to delete container" );
102102 TimeUnit .MINUTES .sleep (1 );
103103 assertDoesNotThrow (
You can’t perform that action at this time.
0 commit comments