Infineon.EAF.Runtime v2.60.0

This commit is contained in:
2025-06-16 11:21:25 -07:00
parent 4c31d530b0
commit 54d9c3f714
27 changed files with 2300 additions and 1634 deletions

View File

@ -51,7 +51,7 @@ public class WC : 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
@ -64,13 +64,13 @@ public class WC : LoggingUnitTesting, IDisposable
StringBuilder results = new();
(string cellInstanceName, string cellInstanceVersionName)[] collection = new (string, string)[]
{
new("WC6INCH1-EQPT", "v2.59.0"),
new("WC6INCH2-EQPT", "v2.59.0"),
new("WC6INCH3-EQPT", "v2.59.0"),
new("WC6INCH4-EQPT", "v2.59.0"),
new("WC8INCH1-EQPT", "v2.59.0"),
new("WC8INCH2-EQPT", "v2.59.0"),
new("WC8INCH3-EQPT", "v2.59.0"),
new("WC6INCH1-EQPT", "v2.60.0"),
new("WC6INCH2-EQPT", "v2.60.0"),
new("WC6INCH3-EQPT", "v2.60.0"),
new("WC6INCH4-EQPT", "v2.60.0"),
new("WC8INCH1-EQPT", "v2.60.0"),
new("WC8INCH2-EQPT", "v2.60.0"),
new("WC8INCH3-EQPT", "v2.60.0"),
};
string production = "http://messa08ec.infineon.com:9003/CellInstanceServiceV2";
Shared.PasteSpecialXml.EAF.XML.API.CellInstance.CellInstanceVersion cellInstanceVersion;