mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-20 21:33:10 -07:00
Hello GitHub
This commit is contained in:
parent
456fe5e355
commit
c13b8a099e
822 changed files with 276650 additions and 75 deletions
|
@ -0,0 +1,41 @@
|
|||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// Licensed under the MIT License.
|
||||
|
||||
using System;
|
||||
|
||||
namespace Calculator.UIAutomationLibrary
|
||||
{
|
||||
public class PerfConstants
|
||||
{
|
||||
/// <summary>
|
||||
/// Path where the regions, wprprofiles and wpaprofiles will be deployed to by the spkg.
|
||||
/// </summary>
|
||||
public const string ConfigDirectory = @"Config\";
|
||||
|
||||
/// <summary>
|
||||
/// Our FunGates source, where we can view test results.
|
||||
/// </summary>
|
||||
public const string FunGatesSource =
|
||||
#if DEBUG
|
||||
"TestSite";
|
||||
#else
|
||||
"Utility Apps Performance Tests";
|
||||
#endif
|
||||
|
||||
/// <summary>
|
||||
/// The Windows Performance Recorder profile. These strings must have the config directory prefix.
|
||||
/// For use with the WPRProfileFile test attribute.
|
||||
/// </summary>
|
||||
public const string AppLifecycleWPRProfile = ConfigDirectory + "AppLifecycle.Profile.wprp";
|
||||
|
||||
/// <summary>
|
||||
/// The regions of interest file that contains the events we are interested in measuring.
|
||||
/// </summary>
|
||||
public const string AppLifecycleRegions = ConfigDirectory + "AppLifecycle.regions.xml";
|
||||
|
||||
/// <summary>
|
||||
/// These are uses with the DataSource test property to specify iteration info.
|
||||
/// </summary>
|
||||
public const string AppLifecycleInterationsSource = "Table:" + ConfigDirectory + "AppLifecycle.Iterations.xml#PerformanceConfigurations";
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue