mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-06 16:16:44 +08:00
- 重构 TestArchitectureContext 与 TestArchitectureContextV3 的共享 IArchitectureContext 测试实现到 TestArchitectureContextBase - 更新 gframework-pr-review 技能规则,要求对已验证成立的 nitpick 进行显式 triage - 补充 analyzer-warning-reduction 的恢复点与验证记录
13 lines
516 B
C#
13 lines
516 B
C#
namespace GFramework.Core.Tests.Architectures;
|
|
|
|
/// <summary>
|
|
/// 为 <see cref="GameContextTests" /> 提供最小可用的架构上下文测试桩。
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// 共享的容器解析、事件总线协作与 legacy CQRS 失败契约由 <see cref="TestArchitectureContextBase" /> 提供,
|
|
/// 当前类型仅作为默认测试上下文命名入口,供现有测试与派生替身继续复用。
|
|
/// </remarks>
|
|
public class TestArchitectureContext : TestArchitectureContextBase
|
|
{
|
|
}
|