ProcessDataStandardFormat

run.json
descriptions.json
MissingMethodException
MissingMethodException
Infineon.Mesa.PDF.Text.Stripper 4.8.0.2
MSTEST0037
This commit is contained in:
2025-03-03 11:56:16 -07:00
parent 9d7651e7e0
commit abe39b215b
8 changed files with 52 additions and 47 deletions

View File

@ -51,7 +51,7 @@ public class MET08RESIHGCV : LoggingUnitTesting, IDisposable
public void TestDateTime()
{
DateTime dateTime = DateTime.Now;
Assert.IsTrue(dateTime.ToString("M/d/yyyy h:mm:ss tt") == dateTime.ToString());
Assert.AreEqual(dateTime.ToString(), dateTime.ToString("M/d/yyyy h:mm:ss tt"));
}
#if DEBUG
@ -109,7 +109,7 @@ public class MET08RESIHGCV : LoggingUnitTesting, IDisposable
float b = 0.3864f;
float c = 100;
float d = -9.84601f;
Assert.IsTrue((b - a) / a * c == d);
Assert.AreEqual(d, (b - a) / a * c);
NonThrowTryCatch();
}