Exemplo n.º 1
0
        public async Task StatusTest()
        {
            var sw = new Stopwatch();

            sw.Start();
            var res = await _statusClient.GetAllAsync(null);

            sw.Stop();
            Console.WriteLine("Status : " + res.Count + " response time " + sw.ElapsedMilliseconds + " ms");
            //Assert.That(res.Count, Is.GreaterThan(0));
        }