// Copyright (c) 2025-2026 GeWuYou
// SPDX-License-Identifier: Apache-2.0
using GFramework.Core.Abstractions.Bases;
namespace GFramework.Core.Tests.Architectures;
///
/// 表示显式声明正优先级的混合测试系统。
///
public class MixedTestSystemWithPriority : AbstractSystem, IMixedTestSystem, IPrioritized
{
///
/// 获取当前测试系统的排序优先级。
///
public int Priority => 10;
///
/// 保持空初始化,以便测试仅覆盖优先级排序行为。
///
protected override void OnInit()
{
}
}