Esempio n. 1
0
    public async Task TestClusterId()
    {
        var clusterId = await _client.GetClusterIdAsync();

        Assert.NotEmpty(clusterId);

        // Test cached path.
        var cachedClusterId = await _client.GetClusterIdAsync();

        Assert.Equal(clusterId, cachedClusterId);
    }