public async Task Should_export_people_proxy()
        {
            _client = GetUnanetClient(true, proxy: true);
            var sourcePath = SourcePath;
            var task1      = await PersonModel.ExportFileAsync(_client, sourcePath).ConfigureAwait(false);

            Check.That(task1.hasFile).IsTrue();
            var task2 = PersonModel.GetReadXml(_client, sourcePath);

            Check.That(task2).IsNotEmpty();
        }
 [TearDown] public void TearDown()
 {
     _client?.Dispose(); _client = null;
 }
 [SetUp] public void Configure() => _client = GetUnanetClient();