GFramework/GFramework.Core.Tests/Architectures/MixedTestSystemWithoutPriority.cs
gewuyou 86cfaa7122 test(architectures): 拆分优先级测试辅助类型文件
- 拆分 PriorityServiceTests 末尾的测试接口与辅助类型到独立文件
- 保留原有命名空间、可见性与优先级测试语义
- 补充新文件的 XML 注释并清理原测试文件的无关 using
2026-04-27 11:17:19 +08:00

17 lines
449 B
C#

using GFramework.Core.Abstractions.Bases;
namespace GFramework.Core.Tests.Architectures;
/// <summary>
/// 表示未声明优先级、依赖默认排序值的混合测试系统。
/// </summary>
public class MixedTestSystemWithoutPriority : AbstractSystem, IMixedTestSystem
{
/// <summary>
/// 保持空初始化,以便测试仅覆盖优先级排序行为。
/// </summary>
protected override void OnInit()
{
}
}