Examples of ImmutableMaximumValueConstraint


Examples of com.volantis.shared.metadata.type.constraint.immutable.ImmutableMaximumValueConstraint

        final Object otherConstraint = doRoundTrip(constraint);
        assertEquals(constraint, otherConstraint);
    }

    public void testMaximumValueConstraintDouble() throws Exception {
        final ImmutableMaximumValueConstraint constraint =
            (ImmutableMaximumValueConstraint) unmarshall(
                getResourceAsString("res/maximum-value-constraint-double.xml"),
                ImmutableMaximumValueConstraintImpl.class);

        // check the created object
        assertEquals(new Double(4.2d), constraint.getLimitAsNumber());

        final Object otherConstraint = doRoundTrip(constraint);
        assertEquals(constraint, otherConstraint);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.