Bug fixes

This commit is contained in:
Mike Phares 2024-06-12 09:58:26 -07:00
parent f1b0f15342
commit e365af3f6f
5 changed files with 7 additions and 5 deletions

View File

@ -138,6 +138,7 @@ public class FileRead : Shared.FileRead, IFileRead
if (iProcessData.Details.Count == 0) if (iProcessData.Details.Count == 0)
throw new Exception(string.Concat("C) No Data - ", dateTime.Ticks)); throw new Exception(string.Concat("C) No Data - ", dateTime.Ticks));
results = iProcessData.GetResults(this, _Logistics, results.Item4); results = iProcessData.GetResults(this, _Logistics, results.Item4);
if (_IsEAFHosted)
File.Delete(reportFullPath); File.Delete(reportFullPath);
} }
#nullable disable #nullable disable

View File

@ -106,7 +106,7 @@ public class METCLIMATEC : EAFLoggingUnitTesting
[TestMethod] [TestMethod]
public void Staging__v2_56_0__METCLIMATEC__Dummy() public void Staging__v2_56_0__METCLIMATEC__Dummy()
{ {
string check = "637400762709163000.zip"; string check = "637953064190000000.zip";
MethodBase methodBase = new StackFrame().GetMethod(); MethodBase methodBase = new StackFrame().GetMethod();
EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Getting configuration")); EAFLoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Getting configuration"));
_ = AdaptationTesting.GetWriteConfigurationGetFileRead(methodBase, check, EAFLoggingUnitTesting.AdaptationTesting); _ = AdaptationTesting.GetWriteConfigurationGetFileRead(methodBase, check, EAFLoggingUnitTesting.AdaptationTesting);

View File

@ -53,6 +53,7 @@ public class METCLIMATEC
IFileRead fileRead = _METCLIMATEC.AdaptationTesting.Get(methodBase, sourceFileLocation: variables[2], sourceFileFilter: variables[3], useCyclicalForDescription: false); IFileRead fileRead = _METCLIMATEC.AdaptationTesting.Get(methodBase, sourceFileLocation: variables[2], sourceFileFilter: variables[3], useCyclicalForDescription: false);
Logistics logistics = new(fileRead); Logistics logistics = new(fileRead);
_ = AdaptationTesting.ReExtractCompareUpdatePassDirectory(variables, fileRead, logistics, validatePDSF); _ = AdaptationTesting.ReExtractCompareUpdatePassDirectory(variables, fileRead, logistics, validatePDSF);
NonThrowTryCatch();
} }
#if DEBUG #if DEBUG

View File

@ -65,7 +65,7 @@ public class TRENDLOG
[Ignore] [Ignore]
#endif #endif
[TestMethod] [TestMethod]
public void Staging__v2_56_0__TRENDLOG__csv638465291633220311__Normal() public void Staging__v2_56_0__TRENDLOG__csv638465291633220312__Normal()
{ {
bool validatePDSF = false; bool validatePDSF = false;
string check = "*.csv.trg"; string check = "*.csv.trg";

View File

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.52.2.0")] [assembly: AssemblyVersion("2.56.0.0")]
[assembly: AssemblyFileVersion("2.52.2.0")] [assembly: AssemblyFileVersion("2.56.0.0")]