Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add generic taxonomy change processor #981

Merged
merged 13 commits into from
Mar 9, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
feat(commons): Retire LongBidiMapWithInternalId in favor of...
...insertion-ordered sets (both Object and primitive long version is
supported).
  • Loading branch information
apeteri committed Feb 17, 2022

Verified

This commit was signed with the committer’s verified signature.
schroda schroda
commit 249c4191014a7b5ae48733f3b265939c9e3a8ff4
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2011-2020 B2i Healthcare Pte Ltd, http://b2i.sg
* Copyright 2011-2022 B2i Healthcare Pte Ltd, http://b2i.sg
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -19,11 +19,7 @@
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;

import com.b2international.commons.test.collect.BitSetTest;
import com.b2international.commons.test.collect.ByteOpenHashSetTest;
import com.b2international.commons.test.collect.EmptyLongListTest;
import com.b2international.commons.test.collect.IntOpenHashSetTest;
import com.b2international.commons.test.collect.LongOpenHashSetTest;
import com.b2international.commons.test.collect.*;
import com.b2international.commons.test.config.ConfigurationFactoryTest;

/**
@@ -39,7 +35,9 @@
ByteOpenHashSetTest.class,
IntOpenHashSetTest.class,
LongOpenHashSetTest.class,
EmptyLongListTest.class
EmptyLongListTest.class,
OrderedSetTest.class,
LongOrderedSetTest.class,
})
public class AllCommonsTests {
// Empty class body
Loading