vscode-azure-iot-toolkit/test/constants.ts

12 строки
578 B
TypeScript

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
"user strict";
export class TestConstants {
public static IotHubConnectionString = "HostName=iot-hub-test.azure-devices.net;SharedAccessKeyName=iothubowner;SharedAccessKey=abcdef";
public static DeviceConnectionString = "HostName=iot-hub-test.azure-devices.net;DeviceId=device1;SharedAccessKey=abcdef";
public static IotHubHostName = "iot-hub-test.azure-devices.net";
public static InvalidIotHubConnectionString = "invalid-iot-hub-connection-string";
}