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

org.xpertss.proximo.matchers.Not Maven / Gradle / Ivy

Go to download

Proximo provides a simple declarative means for creating proxies and stubbing method behavior overrides.

The newest version!
/**
 * Copyright 2015 XpertSoftware
 * 

* Created By: cfloersch * Date: 6/3/2015 */ package org.xpertss.proximo.matchers; import xpertss.proximo.Matcher; import java.io.Serializable; @SuppressWarnings("unchecked") public class Not implements Matcher, Serializable { private static final long serialVersionUID = 4627373642333593264L; private final Matcher first; public Not(Matcher first) { this.first = first; } public boolean matches(Object actual) { return !first.matches(actual); } @Override public int specificity() { return first.specificity(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy