/**
* Verifies failure to match any code sets.
*/
public void testCodeSetsDoNotMatch() throws Exception
{
CodeSetComponent local = new CodeSetComponent( 1, new int[]{0x123, 0x345} );
CodeSetComponent remote = new CodeSetComponent( 0x21, new int[]{0x34, 0x567, 0x890} );
try
{
CodeSet.getMatchingCodeSet( local, remote, /* wide */ true );
fail( "Should have reported failure to match" );
} catch (CODESET_INCOMPATIBLE e)