Skip to content

Commit

Permalink
Fixed forgotten biblatex test with biblatex-software type definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
calixtus committed Aug 23, 2020
1 parent 9bc1731 commit db4458a
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import org.jabref.model.entry.field.StandardField;
import org.jabref.model.entry.field.UnknownField;
import org.jabref.model.entry.types.BiblatexEntryTypeDefinitions;
import org.jabref.model.entry.types.BiblatexSoftwareEntryTypeDefinitions;
import org.jabref.model.entry.types.BibtexEntryTypeDefinitions;
import org.jabref.model.entry.types.EntryType;
import org.jabref.model.entry.types.IEEETranEntryTypeDefinitions;
Expand Down Expand Up @@ -72,6 +73,8 @@ void allTypesBibtexAreCorrect() {
@Test
void allTypesBiblatexAreCorrect() {
TreeSet<BibEntryType> defaultTypes = new TreeSet<>(BiblatexEntryTypeDefinitions.ALL);
defaultTypes.addAll(BiblatexSoftwareEntryTypeDefinitions.ALL);

assertEquals(defaultTypes, entryTypesManager.getAllTypes(BibDatabaseMode.BIBLATEX));
}

Expand Down

0 comments on commit db4458a

Please sign in to comment.