Examples of inspectChangelog()


Examples of org.tmatesoft.hg.repo.HgBundle.inspectChangelog()

    l.add(Nodeid.fromAscii("d074971287478f69ab0a64176ce2284d8c1e91c3")); // 638
    File bundleFile = bg.create(l);
    HgBundle b = new HgLookup().loadBundle(bundleFile);
    //
    DumbInspector insp = new DumbInspector();
    b.inspectChangelog(insp);
    errorCollector.assertTrue(insp.clogEnter && insp.clogExit);
    errorCollector.assertFalse(insp.csets.isEmpty());
    errorCollector.assertFalse(insp.manifestEnter || insp.manifestExit);
    Collections.sort(l);
    Collections.sort(insp.csets);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.