47 lines
1.6 KiB
C#
47 lines
1.6 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.
|
|
-------------------------------------------------------------------------*/
|
|
using System;
|
|
|
|
namespace ProgramLib
|
|
{
|
|
/// <summary>
|
|
/// Partial class that define all the Functional Tests for all the Functional Test Requirements in the TRD
|
|
/// </summary>
|
|
public partial class Program
|
|
{
|
|
/// <summary>
|
|
/// GMA_ATP_001 - Perform UUT Safe-to-turn-on
|
|
/// </summary>
|
|
public void Perform_GMA_ATP_001_UUT_STTO()
|
|
{
|
|
try
|
|
{
|
|
BasicTest test = new GMA_ATP_001_UUT_STTO();
|
|
test.RunTest();
|
|
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
// DO NOT THROW in this block
|
|
// this function will handle the error accordingly since we could be calling this from third-party test executive like TestStand
|
|
TerminateTestOnMainThreadError(ex);
|
|
}
|
|
}
|
|
}
|
|
}
|