mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 08:44:29 +08:00
- 拆分 PriorityServiceTests 末尾的测试接口与辅助类型到独立文件 - 保留原有命名空间、可见性与优先级测试语义 - 补充新文件的 XML 注释并清理原测试文件的无关 using
23 lines
576 B
C#
23 lines
576 B
C#
using GFramework.Core.Abstractions.Bases;
|
|
using GFramework.Core.Model;
|
|
|
|
namespace GFramework.Core.Tests.Architectures;
|
|
|
|
/// <summary>
|
|
/// 表示优先级为 30 的测试模型。
|
|
/// </summary>
|
|
public class PriorityTestModelC : AbstractModel, IPriorityTestModel, IPrioritized
|
|
{
|
|
/// <summary>
|
|
/// 获取当前测试模型的排序优先级。
|
|
/// </summary>
|
|
public int Priority => 30;
|
|
|
|
/// <summary>
|
|
/// 保持空初始化,以便测试仅覆盖优先级排序行为。
|
|
/// </summary>
|
|
protected override void OnInit()
|
|
{
|
|
}
|
|
}
|