in core/src/main/java/org/apache/sling/testing/mock/osgi/MockConfiguration.java [320:334]
static int getCount( Dictionary<String, Object> props )
{
int count = (props == null ? 0 : props.size());
if ( props != null )
{
for(final String p : AUTO_PROPS)
{
if ( props.get(p) != null )
{
count--;
}
}
}
return count;
}