// Copyright (c) 2025-2026 GeWuYou // SPDX-License-Identifier: Apache-2.0 using GFramework.Core.Abstractions.Architectures; using GFramework.Core.Abstractions.Command; using GFramework.Core.Rule; namespace GFramework.Core.Tests.Command; /// /// 为 提供可观察上下文注入的带返回值 legacy 命令。 /// internal sealed class ContextAwareLegacyCommandWithResult(int result) : ContextAwareBase, ICommand { /// /// 获取执行期间观察到的架构上下文。 /// public IArchitectureContext? ObservedContext { get; private set; } /// public int Execute() { ObservedContext = ((GFramework.Core.Abstractions.Rule.IContextAware)this).GetContext(); return result; } }