Examples of RisImporter


Examples of net.sf.jabref.imports.RisImporter

    super.tearDown();
  }

  public void testIsRecognizedFormat() throws IOException {

        RisImporter importer = new RisImporter();
    assertTrue(importer.isRecognizedFormat(RISImporterTest.class
      .getResourceAsStream("RisImporterTest1.ris")));
  }
View Full Code Here

Examples of net.sf.jabref.imports.RisImporter

    IsiImporter.processSubSup(hm);
    assertEquals("$_{\\$Hello}$", hm.get("title"));
  }

  public void testImportEntries() throws IOException {
    RisImporter importer = new RisImporter();

    List<BibtexEntry> entries = importer.importEntries(RISImporterTest.class
      .getResourceAsStream("RisImporterTest1.ris"));
    assertEquals(1, entries.size());
    BibtexEntry entry = entries.get(0);
    assertEquals("Editorial: Open Source and Empirical Software Engineering", entry
      .getField("title"));
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.