using OSGeo.MapGuide.Test.Common; using SqliteDotNet; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OSGeo.MapGuide.Test.Operations { /// /// The base class of all test executors using the MgRenderingService /// /// The test executor subclass type public abstract class RenderingServiceOperationExecutor : PlatformApiTestExecutor { protected MgRenderingService _renderingService; protected RenderingServiceOperationExecutor(MgRenderingService renderSvc, string unitTestVm) : base(typeof(T).Name.ToUpper(), ApiTypes.Platform, unitTestVm) { _renderingService = renderSvc; } } }