using LLM.Editor.Data; using System.Collections.Generic; namespace LLM.Editor.Tests.Integration { /// /// Interface for a C#-based dummy test case. /// Each test case represents a full, multi-step integration scenario. /// public interface IDummyTestCase { /// /// The user-facing phrase that triggers this test case in the dropdown. /// string TriggerPhrase { get; } /// /// Gets the sequence of command lists to execute. /// Each inner list represents one "turn" or one step of the integration test. /// List> GetCommandSteps(); } }