1/*--------------------------------------------------------------------------------------------- 2 * Copyright (c) Microsoft Corporation. All rights reserved. 3 * Licensed under the MIT License. See License.txt in the project root for license information. 4 *--------------------------------------------------------------------------------------------*/ 5 6import { SimulationStorageValue } from './simulationStorage'; 7 8export const enum TestSource { 9 Local = 1, 10 /** AML (Azure ML) runs */ 11 External = 2, 12 /** NES external scenarios */ 13 NesExternal = 3, 14} 15 16export type TestSourceValue = SimulationStorageValue<TestSource>; 17 18