using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Amazon.Lambda.Core; namespace Amazon.Lambda.TestUtilities { /// /// A test implementation of the IClientApplication interface used for writing local tests of Lambda Functions. /// public class TestClientApplication : IClientApplication { /// /// The application's package name. /// public string AppPackageName { get; set; } /// /// The application's title. /// public string AppTitle { get; set; } /// /// The application's version code. /// public string AppVersionCode { get; set; } /// /// The application's version. /// public string AppVersionName { get; set; } /// /// The application's installation id. /// public string InstallationId { get; set; } } }