public void testSetStylesheetClosedFail() throws Exception {
    VirtualCollection vc = this.getMyVC();
    vc.close();

    try {
      URL url = null;
      vc.setStylesheet(url);
      assertTrue(false);
    } catch (XMLDBException e) {
      assertEquals(ErrorCodes.COLLECTION_CLOSED, e.errorCode);
    }
  }