1 /** 2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 * SPDX-License-Identifier: Apache-2.0. 4 */ 5 6 package software.amazon.awssdk.crt.test; 7 8 // Encapsulates any platform-specific configuration for tests 9 // TODO remove this. We are going to be using System Properties for tests 10 public class CrtTestContext { 11 // Trust store PEM blob 12 public byte[] trustStore = null; 13 // IoT Thing certificate for testing 14 public byte[] iotClientCertificate = null; 15 // IoT Thing private key for testing 16 public byte[] iotClientPrivateKey = null; 17 // IoT Thing ecc certificate for testing 18 public byte[] iotClientECCCertificate = null; 19 // IoT Thing ecc private key for testing 20 public byte[] iotClientECCPrivateKey = null; 21 // IoT ATS endpoint for testing 22 public String iotEndpoint = null; 23 // IoT CA Root 24 public byte[] iotCARoot = null; 25 } 26