in core/src/main/java/org/apache/sling/testing/mock/osgi/MockBundleContext.java [297:308]
public ServiceReference getServiceReference(final String clazz) {
try {
ServiceReference[] serviceRefs = getServiceReferences(clazz, null);
if (serviceRefs != null && serviceRefs.length > 0) {
return serviceRefs[0];
}
}
catch (InvalidSyntaxException ex) {
// should not happen
}
return null;
}