46 lines
2.1 KiB
C#
46 lines
2.1 KiB
C#
/*-------------------------------------------------------------------------
|
|
// UNCLASSIFIED
|
|
/*-------------------------------------------------------------------------
|
|
RAYTHEON PROPRIETARY: THIS DOCUMENT CONTAINS DATA OR INFORMATION
|
|
PROPRIETARY TO RAYTHEON COMPANY AND IS RESTRICTED TO USE ONLY BY PERSONS
|
|
AUTHORIZED BY RAYTHEON COMPANY IN WRITING TO USE IT. DISCLOSURE TO
|
|
UNAUTHORIZED PERSONS WOULD LIKELY CAUSE SUBSTANTIAL COMPETITIVE HARM TO
|
|
RAYTHEON COMPANY'S BUSINESS POSITION. NEITHER SAID DOCUMENT NOR ITS
|
|
CONTENTS SHALL BE FURNISHED OR DISCLOSED TO OR COPIED OR USED BY PERSONS
|
|
OUTSIDE RAYTHEON COMPANY WITHOUT THE EXPRESS WRITTEN APPROVAL OF RAYTHEON
|
|
COMPANY.
|
|
|
|
THIS PROPRIETARY NOTICE IS NOT APPLICABLE IF DELIVERED TO THE U.S.
|
|
GOVERNMENT.
|
|
|
|
UNPUBLISHED WORK - COPYRIGHT RAYTHEON COMPANY.
|
|
-------------------------------------------------------------------------*/
|
|
namespace ProgramLib
|
|
{
|
|
/// <summary>
|
|
/// Define non-specific constants
|
|
/// </summary>
|
|
internal static class TestRunConfigXml
|
|
{
|
|
// define all paths here
|
|
public const string RootPath = "/root";
|
|
public const string TestRunPath = RootPath + "/test_run";
|
|
public const string TestRunPowerPath = TestRunPath + "/power";
|
|
|
|
// define all attribute names here
|
|
public const string TestRunPathAttributeName = "path";
|
|
public const string TestRunTestNameAttributeName = "test_name";
|
|
public const string TestRunTesterAttributeName = "tester";
|
|
public const string TestRunStartDateAttributeName = "start_date";
|
|
public const string TestRunStartTimeAttributeName = "start_time";
|
|
public const string TestRunEndDateAttributeName = "end_date";
|
|
public const string TestRunEndTimeAttributeName = "end_time";
|
|
|
|
public const string TestRunPowerOnDateAttributeName = "on_date";
|
|
public const string TestRunPowerOnTimeAttributeName = "on_time";
|
|
public const string TestRunPowerOffDateAttributeName = "off_date";
|
|
public const string TestRunPowerOffTimeAttributeName = "off_time";
|
|
public const string TestRunPowerOnDurationAttributeName = "duration_sec";
|
|
}
|
|
}
|