mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 00:39:00 +08:00
- 拆分 GameContextTests、ArchitectureServicesTests、RegistryInitializationHookBaseTests 与 Cqrs 测试辅助类型,消除批次内 MA0048 热点 - 修复 Core.Tests 零散可空性、集合抽象和测试辅助 warning,使受影响 Release 构建清零 - 更新 analyzer-warning-reduction 跟踪与 trace,记录 236 条仓库根 warning 基线和 45/50 停止点
13 lines
294 B
C#
13 lines
294 B
C#
namespace GFramework.Core.Tests.Events;
|
|
|
|
/// <summary>
|
|
/// 表示包含整型载荷的测试事件。
|
|
/// </summary>
|
|
public sealed class TestEvent
|
|
{
|
|
/// <summary>
|
|
/// 获取初始化阶段写入的接收值。
|
|
/// </summary>
|
|
public int ReceivedValue { get; init; }
|
|
}
|