mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-22 19:03:29 +08:00
- 移除 Architecture 类中关于业务操作方法的注释说明 - 更新 AsyncTestModel 继承 AbstractModel 并移除上下文设置相关方法 - 添加 ITestModel 接口定义用于测试模型 - 在 SyncArchitectureTests 中添加事件接收和取消注册功能测试 - 创建 TestEvent 和 EmptyEvent 用于事件系统测试 - 修改 TestModel 继承 AbstractModel 并实现 ITestModel 接口 - 添加 TestQuery 类用于测试查询操作功能 - [skip ci]
8 lines
154 B
C#
8 lines
154 B
C#
namespace GFramework.Core.Tests.events;
|
|
|
|
public sealed class TestEvent
|
|
{
|
|
public int ReceivedValue { get; init; }
|
|
}
|
|
|
|
public sealed class EmptyEvent; |