package org.exolab.castor.xml; import junit.framework.TestCase; public class IDResolverImplTest extends TestCase { IDResolverImpl resolver; protected void setUp() throws Exception { super.setUp(); resolver = new IDResolverImpl(); } protected void tearDown() throws Exception { super.tearDown(); } /** * a ValidationException should never be thrown * when isValidating is set to false * * @throws ValidationException */ public void testBindOnEmptyId() throws ValidationException { resolver.bind("", null, false); } }