final ClusteringComponents clusteringComponents = props.getClusteringComponents();
assertThat(clusteringComponents.getComponentClasses()).containsExactly(int.class, int.class);
assertThat(clusteringComponents.getComponentFields()).containsExactly(rankField, countField);
assertThat(clusteringComponents.getComponentNames()).containsExactly("rank", "count");
assertThat(clusteringComponents.getCQL3ComponentNames()).containsExactly("rank", "count");
assertThat(clusteringComponents.getClusteringOrders()).containsExactly(new ClusteringOrder("rank", Sorting.DESC), new ClusteringOrder("count", Sorting.DESC));
}