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