public Set<String> getTestLabels() {
Class<?> clazz = getClass();
Set<String> labels = getTestLabels(clazz);
try {
Method method = clazz.getMethod(getName());
AuraTestLabels anno = method.getAnnotation(AuraTestLabels.class);
addLabels(labels, anno);
} catch (NoSuchMethodException e) {
// dynamic tests should override this function
}
return labels;