Infineon.EAF.Runtime v2.60.0

This commit is contained in:
2025-06-16 10:41:08 -07:00
parent 5cda494708
commit e0496fefec
33 changed files with 2468 additions and 1352 deletions

View File

@ -58,12 +58,12 @@ public class JPEG : LoggingUnitTesting, IDisposable
LoggingUnitTesting.Logger.LogInformation(string.Concat(methodBase.Name, " - Getting configuration"));
// (float pageMeanConfidence, string text, List<string> blocks) = FileHandlers.jpeg.ProcessData.Parse(fileName, new(), 0, 0, 0, 0, 0, 0);
List<(float pageMeanConfidence, string text, List<string> blocks)> collection = FileHandlers.jpeg.ProcessData.Parse(fileName);
Assert.IsTrue(collection.Count != 0);
Assert.AreNotEqual(0, collection.Count);
foreach ((float pageMeanConfidence, string text, List<string> blocks) in collection)
{
Assert.IsTrue(pageMeanConfidence > 0);
Assert.IsTrue(!string.IsNullOrEmpty(text));
Assert.IsTrue(blocks.Count != 0);
Assert.IsFalse(string.IsNullOrEmpty(text));
Assert.AreNotEqual(0, blocks.Count);
// Normal images
// "RECIPE:\nte end\nte a ee)\nAcne\n"
// Grayscale
@ -86,12 +86,12 @@ public class JPEG : LoggingUnitTesting, IDisposable
StringBuilder results = new();
(string cellInstanceName, string cellInstanceVersionName)[] collection = new (string, string)[]
{
new("R34", "v2.59.0"),
new("R53", "v2.59.0"),
new("R55", "v2.59.0"),
new("R34-EQPT", "v2.59.0"),
new("R53-EQPT", "v2.59.0"),
new("R55-EQPT", "v2.59.0"),
new("R34", "v2.60.0"),
new("R53", "v2.60.0"),
new("R55", "v2.60.0"),
new("R34-EQPT", "v2.60.0"),
new("R53-EQPT", "v2.60.0"),
new("R55-EQPT", "v2.60.0"),
};
string production = "http://messa08ec.infineon.com:9003/CellInstanceServiceV2";
Shared.PasteSpecialXml.EAF.XML.API.CellInstance.CellInstanceVersion cellInstanceVersion;