Exemplo n.º 1
0
        public static async Task Initialize(TestContext _)
        {
            Client = new BasRemoteClient(new Options
            {
                ScriptName = ConfigurationManager.AppSettings["ScriptName"]
            });

            await Client.Start();
        }
Exemplo n.º 2
0
 /// <summary>
 ///     Create an instance of <see cref="BasThread" /> class.
 /// </summary>
 /// <param name="client">
 ///     Remote client object.
 /// </param>
 public BasThread(IBasRemoteClient client)
 {
     Client = client;
 }
Exemplo n.º 3
0
 /// <summary>
 ///     Create an instance of <see cref="BasFunction" /> class.
 /// </summary>
 /// <param name="client">
 ///     Remote client object.
 /// </param>
 public BasFunction(IBasRemoteClient client)
 {
     Client = client;
 }