Package edu.scripps.mwsync

Examples of edu.scripps.mwsync.Wiki


  static final String TEST_ROOT = "/etc/gwsync/tests/";

  @BeforeClass
  public static void setUp() throws Exception {
    source = null;
    target = new Wiki("genewikiplus.org", "");
    target.setUsingCompressedRequests(false);
    mockTarget = new MockWiki("genewikiplus.org", "");
    mockTarget.setUsingCompressedRequests(false);
    period = 5;
View Full Code Here


public class TestBugs {

  @Test
  public void testNoAnnotationsBug() throws IOException {
    Wiki w = new Wiki("genewikiplus.org", "");
    Wiki mock = new MockWiki("genewikiplus.org", "");
    mock.setUsingCompressedRequests(false);
    w.setUsingCompressedRequests(false);
    String dmt1 = w.getPageText("DMT1");
    GeneWikiEditor e = new GeneWikiEditor("/etc/gwsync/", "10058c23-e837-40e8-8e49-9bd52f94c283", "file:/etc/gwsync/doid.owl");
    String result = GeneWikiEditor.appendDetachedAnnotations(dmt1, mock);
    System.out.println(result);
View Full Code Here

TOP

Related Classes of edu.scripps.mwsync.Wiki

Copyright © 2018 www.massapicom. 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.