Package net.sf.jabref.imports

Examples of net.sf.jabref.imports.RisImporter.importEntries()


  }

  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.