Files
met08ddupsp1tbi/Adaptation/FileHandlers/txt/Constant.cs
phares@iscn5cg20977xq 8ee374b2a8 Refactor ProcessDataStandardFormat and add unit tests for v2.61.1
- Updated GetPDSFText method to accept nullable logisticsText parameter.
- Removed unused TryGetPropertyIndex method from ProcessDataStandardFormat.
- Introduced new unit tests for CreateSelfDescription and Extract functionalities in version 2.61.1.
- Implemented logging and file handling in the test classes to ensure proper setup and teardown.
2025-12-02 08:32:55 -07:00

24 lines
1.0 KiB
C#

namespace Adaptation.FileHandlers.txt;
internal class Constant
{
public string F1 { get; } = "F -1";
public string Max { get; } = "Max";
public string Min { get; } = "Min";
public string Mean { get; } = "Mean";
public string LotId { get; } = "Lot ID:";
public string Session { get; } = "Session:";
public string StdDev { get; } = "Std. Dev.";
public string DCNTotals { get; } = "DCN Totals";
public string DNNTotals { get; } = "DNN Totals";
public string DWNTotals { get; } = "DWN Totals";
public string Grade { get; } = "F Grade";
public string Reject { get; } = "F Reject";
public string LongWaferSummary { get; } = "Long Wafer Summary";
public string OverLoad { get; } = "F OverLoad";
public string ShortWaferSummary { get; } = "Short Wafer Summary";
public string Empty35Spaces { get; } = " ";
public string FormatExceptionMessage { get; } = "Wafer Summary section is neither Short nor Long format.";
}