Description
the following test fill will always fail as the version manager
has been created before:
@Test public void testGetVersionHistory() throws Exception { testRootNode.addMixin(JcrConstants.MIX_VERSIONABLE); superuser.save(); VersionHistory vh = versionManager.getVersionHistory(testRoot); }
however, it will succeeed if the version manager instance is created
after the save call.