// Copyright (c) Microsoft. All rights reserved. using Microsoft.Agents.AI.Workflows.Declarative.PowerFx; using Microsoft.PowerFx; namespace Microsoft.Agents.AI.Workflows.Declarative.UnitTests.PowerFx; /// /// Base test class for PowerFx engine tests. /// public abstract class RecalcEngineTest(ITestOutputHelper output) : WorkflowTest(output) { internal WorkflowFormulaState State { get; } = new(RecalcEngineFactory.Create()); protected RecalcEngine Engine => this.State.Engine; }