mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 08:44:29 +08:00
- 修复多组 YAML 与 persistence 测试中的 ConfigureAwait 使用与状态校验,清理低风险 analyzer 告警 - 重构 PersistenceTestUtilities 为单类型文件,消除测试辅助模型的文件命名告警 - 更新 analyzer-warning-reduction 跟踪与 trace,记录 RP-054 批次结果与 75 文件阈值停止点
15 lines
432 B
C#
15 lines
432 B
C#
using GFramework.Game.Abstractions.Data;
|
|
|
|
namespace GFramework.Game.Tests.Data;
|
|
|
|
/// <summary>
|
|
/// 为批量持久化测试提供的另一种数据模型,用于验证运行时类型不会在接口路径上退化。
|
|
/// </summary>
|
|
internal sealed class TestNamedData : IData
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置测试数据中的名称值。
|
|
/// </summary>
|
|
public string Name { get; set; } = string.Empty;
|
|
}
|