public async Task TestClusterId() { var clusterId = await _client.GetClusterIdAsync(); Assert.NotEmpty(clusterId); // Test cached path. var cachedClusterId = await _client.GetClusterIdAsync(); Assert.Equal(clusterId, cachedClusterId); }