Пример #1
0
  /*
   * Test that the constant VERSION_2_0 is immutable.
   */
  public void testImmutable() throws IOException, URISyntaxException, ParseException {
    super.testImmutable();

    try {
      version.setMinVersion("3.0");
      fail("UnsupportedOperationException should be thrown");
    } catch (UnsupportedOperationException uoe) {
    }

    try {
      version.setMaxVersion("5.0");
      fail("UnsupportedOperationException should be thrown");
    } catch (UnsupportedOperationException uoe) {
    }
  }