mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 17:21:16 +08:00
- 修复多组 YAML 与 persistence 测试中的 ConfigureAwait 使用与状态校验,清理低风险 analyzer 告警 - 重构 PersistenceTestUtilities 为单类型文件,消除测试辅助模型的文件命名告警 - 更新 analyzer-warning-reduction 跟踪与 trace,记录 RP-054 批次结果与 75 文件阈值停止点
15 lines
352 B
C#
15 lines
352 B
C#
using GFramework.Game.Abstractions.Data;
|
|
|
|
namespace GFramework.Game.Tests.Data;
|
|
|
|
/// <summary>
|
|
/// 为通用持久化测试提供的简单数据模型。
|
|
/// </summary>
|
|
internal sealed class TestSimpleData : IData
|
|
{
|
|
/// <summary>
|
|
/// 获取或设置测试数据中的整数值。
|
|
/// </summary>
|
|
public int Value { get; set; }
|
|
}
|