public ResourcePropertiesMatcher()

in src/main/java/org/apache/sling/hamcrest/matchers/ResourcePropertiesMatcher.java [33:39]


    public ResourcePropertiesMatcher(Map<String, Object> properties) {
        if (properties == null || properties.isEmpty()) {
            throw new IllegalArgumentException("properties is null or empty");
        }

        this.expectedProps = properties;
    }