Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

edu.ucsb.ccs.jaqual.standard: Javadoc index of package edu.ucsb.ccs.jaqual.standard.


Package Samples:

edu.ucsb.ccs.jaqual.standard: This is the main package of the JaQuaL library.  

Classes:

InRange: An assertion to determine if a number falls in a given range. The assertion supports both integer and floating point comparison. You can specify whether or not the bounding values are included or excluded from the range.
Equal: An assertion to test for equality. Supports comparison by reference and value, and comparison of floating point numbers. Example use: Exists.in(elements).suchThat(new Equal(5));
InstanceOf: Assertion to check if an object is an instance of a certain class type. Example use: ForAll.in(elements).ensure(new InstanceOf(Integer.class));
Not: Assertion that negates another assertion. Example use: ForAll.in(elements).ensure(new Not(new Equal(0)));

Home | Contact Us | Privacy Policy | Terms of Service