769770771772773774775776777778779
public void test_wild_toobig() throws TextParseException { Name sub = Name.fromString("a.b.c."); try { sub.wild(4); fail("IllegalArgumentException not thrown"); } catch(IllegalArgumentException e){} }
779780781782783784785786787788789
public void test_wild_toosmall() throws TextParseException { Name sub = Name.fromString("a.b.c."); try { sub.wild(0); fail("IllegalArgumentException not thrown"); } catch(IllegalArgumentException e){} }