package org.exist.xquery.value; import org.exist.xquery.XPathException; import org.junit.Test; /** * * @author Adam Retter <adam@exist-db.org> */ public class UnsignedByteTest { @Test(expected=XPathException.class) public void testOver() throws XPathException { new IntegerValue("256", Type.UNSIGNED_BYTE); } @Test public void testPositiveLimit() throws XPathException { new IntegerValue("255", Type.UNSIGNED_BYTE); } @Test public void testNegativeLimit() throws XPathException { new IntegerValue("0", Type.UNSIGNED_BYTE); } @Test(expected=XPathException.class) public void testUnder() throws XPathException { new IntegerValue("-1", Type.UNSIGNED_BYTE); } }