手动数据源、存图、流程计算

This commit is contained in:
zhengxuan.zhang
2026-05-15 15:29:53 +08:00
parent f07d891346
commit 49c6785682
9 changed files with 800 additions and 419 deletions
@@ -192,7 +192,7 @@ namespace XplorePlane.Tests.Services
"TestProgram",
DateTime.UtcNow,
DateTime.UtcNow,
nodes.Cast<CncNode>().ToList().AsReadOnly());
nodes.Select(n => (CncNode)n).ToList().AsReadOnly());
service.ExecuteAsync(program, null, CancellationToken.None)
.GetAwaiter().GetResult();
@@ -230,7 +230,7 @@ namespace XplorePlane.Tests.Services
"TestProgram",
DateTime.UtcNow,
DateTime.UtcNow,
nodes.Cast<CncNode>().ToList().AsReadOnly());
nodes.Select(n => (CncNode)n).ToList().AsReadOnly());
service.ExecuteAsync(program, null, CancellationToken.None)
.GetAwaiter().GetResult();
@@ -280,7 +280,7 @@ namespace XplorePlane.Tests.Services
"TestProgram",
DateTime.UtcNow,
DateTime.UtcNow,
nodes.Cast<CncNode>().ToList().AsReadOnly());
nodes.Select(n => (CncNode)n).ToList().AsReadOnly());
service.ExecuteAsync(program, null, CancellationToken.None)
.GetAwaiter().GetResult();