1 /* 2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"). 5 * You may not use this file except in compliance with the License. 6 * A copy of the License is located at 7 * 8 * http://aws.amazon.com/apache2.0 9 * 10 * or in the "license" file accompanying this file. This file is distributed 11 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either 12 * express or implied. See the License for the specific language governing 13 * permissions and limitations under the License. 14 */ 15 16 package software.amazon.awssdk.modulepath.tests; 17 18 import java.util.ArrayList; 19 import java.util.List; 20 import software.amazon.awssdk.modulepath.tests.mocktests.BaseMockApiCall; 21 import software.amazon.awssdk.modulepath.tests.mocktests.JsonProtocolApiCall; 22 import software.amazon.awssdk.modulepath.tests.mocktests.XmlProtocolApiCall; 23 24 /** 25 * Executor to run mock tests on module path. 26 */ 27 public class MockTestsRunner { 28 MockTestsRunner()29 private MockTestsRunner() { 30 } 31 main(String... args)32 public static void main(String... args) { 33 List<BaseMockApiCall> tests = new ArrayList<>(); 34 tests.add(new XmlProtocolApiCall()); 35 tests.add(new JsonProtocolApiCall()); 36 37 tests.forEach(t -> { 38 t.successfulApiCall(); 39 t.failedApiCall(); 40 41 t.successfulAsyncApiCall(); 42 t.failedAsyncApiCall(); 43 }); 44 } 45 } 46