All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.meanbean.test.internal.SideEffectDetector Maven / Gradle / Ivy

Go to download

Mean Bean is an open source Java test library that tests equals and hashCode contract compliance, as well as JavaBean/POJO getter and setter methods.

The newest version!
package org.meanbean.test.internal;

import org.meanbean.bean.info.PropertyInformation;

import java.util.List;

public interface SideEffectDetector {

    List init(Object bean, List readableWritableProperties);

    void beforeTestProperty(PropertyInformation property, EqualityTest equalityTest);

    void detectAfterTestProperty();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy