ProcessDataStandardFormat
run.json descriptions.json MissingMethodException MissingMethodException Infineon.Mesa.PDF.Text.Stripper 4.8.0.2 MSTEST0037
This commit is contained in:
@ -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();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user