Package com.salas.bb.domain.query.general

Examples of com.salas.bb.domain.query.general.StringEqualsCO


        IComparisonOperation unsupportedOperation = new LongLessCO();
        criteria.setComparisonOperation(unsupportedOperation);
        assertEquals(Criteria.ERR_OPERATION_NOT_SUPPORTED, criteria.validate());

        IComparisonOperation supportedOperation = new StringEqualsCO();
        criteria.setComparisonOperation(supportedOperation);
        assertEquals(IProperty.ERROR_VALUE_NOT_SPECIFIED, criteria.validate());

        criteria.setValue("a");
        assertNull(criteria.validate());
View Full Code Here

TOP

Related Classes of com.salas.bb.domain.query.general.StringEqualsCO

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.