using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OSGeo.MapGuide.Test.Common { /// /// Executes a particular MapGuide API /// public interface ITestExecutor : IDisposable { /// /// The API flavour we're executing. See /// string Api { get; } /// /// The name of the operation /// string OperationName { get; } /// /// Executes the API with the particular parameter set /// /// /// TestResult Execute(int paramSetId); } }