public async Task TestGetServerVersionAsync()
        {
            var client  = new InfluxDBClient(influxUrl, dbUName, dbpwd);
            var version = await client.GetServerVersionAsync();

            Assert.IsFalse(String.IsNullOrWhiteSpace(version));
            Assert.IsTrue(version != "Unknown");
        }