// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using System; namespace Calculator.UIAutomationLibrary { public class PerfConstants { /// /// Path where the regions, wprprofiles and wpaprofiles will be deployed to by the spkg. /// public const string ConfigDirectory = @"Config\"; /// /// Our FunGates source, where we can view test results. /// public const string FunGatesSource = #if DEBUG "TestSite"; #else "Utility Apps Performance Tests"; #endif /// /// The Windows Performance Recorder profile. These strings must have the config directory prefix. /// For use with the WPRProfileFile test attribute. /// public const string AppLifecycleWPRProfile = ConfigDirectory + "AppLifecycle.Profile.wprp"; /// /// The regions of interest file that contains the events we are interested in measuring. /// public const string AppLifecycleRegions = ConfigDirectory + "AppLifecycle.regions.xml"; /// /// These are uses with the DataSource test property to specify iteration info. /// public const string AppLifecycleInterationsSource = "Table:" + ConfigDirectory + "AppLifecycle.Iterations.xml#PerformanceConfigurations"; } }