Package org.rhq.test

Examples of org.rhq.test.MatchResult


    public boolean matchesSafely(T actual) {
        org.rhq.test.PropertyMatcher<T> matcher = new org.rhq.test.PropertyMatcher<T>();
        matcher.setExpected(expected);
        matcher.setActual(actual);

        MatchResult result = matcher.execute();

        return result.isMatch();
    }
View Full Code Here

TOP

Related Classes of org.rhq.test.MatchResult

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.