Big changes
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/*-------------------------------------------------------------------------
|
||||
/*-------------------------------------------------------------------------
|
||||
// UNCLASSIFIED
|
||||
/*-------------------------------------------------------------------------
|
||||
RAYTHEON PROPRIETARY: THIS DOCUMENT CONTAINS DATA OR INFORMATION
|
||||
@@ -15,28 +15,23 @@ GOVERNMENT.
|
||||
|
||||
UNPUBLISHED WORK - COPYRIGHT RAYTHEON COMPANY.
|
||||
-------------------------------------------------------------------------*/
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using ProgramLib;
|
||||
using Raytheon.Common;
|
||||
|
||||
namespace ProgramLib
|
||||
{
|
||||
/// <summary>
|
||||
/// Power supply constants
|
||||
/// </summary>
|
||||
internal static class PowerSupplyConstants
|
||||
internal abstract class BasicTest
|
||||
{
|
||||
public enum POWER_DEVICE
|
||||
{
|
||||
STE_POWER_SUPPLY_SYSTEM,
|
||||
protected abstract void CheckPrerequisite();
|
||||
|
||||
// Power modules
|
||||
UUT_REF_3_3V,
|
||||
STE_PVM_5V,
|
||||
STE_GU_INTERFACE_RELAYS_25V,
|
||||
STE_GU_INTERFACE_RF_INTERFACE_5V,
|
||||
protected abstract void ExecuteTest();
|
||||
|
||||
public void RunTest()
|
||||
{
|
||||
CheckPrerequisite();
|
||||
ExecuteTest();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -29,6 +29,7 @@ namespace ProgramLib
|
||||
internal static class GeneralConstants
|
||||
{
|
||||
public const string ProgramConfigFilename = "config.ini";
|
||||
public const string DefaultConfigValue = "NOTSET";
|
||||
public const string TestMethodConfigFolderName = "TestMethodConfig";
|
||||
public const string TestMethodConfigFileName = "Test_Method_Configuration.ini";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user