comment on all to all
Project: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/commit/8a26fe8f Tree: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/tree/8a26fe8f Diff: http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/diff/8a26fe8f Branch: refs/heads/COMMONSRDF-46 Commit: 8a26fe8ff3e989ad0c808f95ad7670b9a2e91303 Parents: 92eb91a Author: Stian Soiland-Reyes <st...@apache.org> Authored: Fri Sep 23 17:58:17 2016 +0100 Committer: Stian Soiland-Reyes <st...@apache.org> Committed: Fri Sep 23 17:58:17 2016 +0100 ---------------------------------------------------------------------- .../java/org/apache/commons/rdf/integrationtests/AllToAllTest.java | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-commonsrdf/blob/8a26fe8f/integration-tests/src/test/java/org/apache/commons/rdf/integrationtests/AllToAllTest.java ---------------------------------------------------------------------- diff --git a/integration-tests/src/test/java/org/apache/commons/rdf/integrationtests/AllToAllTest.java b/integration-tests/src/test/java/org/apache/commons/rdf/integrationtests/AllToAllTest.java index b0b4f3b..3edf6e4 100644 --- a/integration-tests/src/test/java/org/apache/commons/rdf/integrationtests/AllToAllTest.java +++ b/integration-tests/src/test/java/org/apache/commons/rdf/integrationtests/AllToAllTest.java @@ -48,6 +48,8 @@ public class AllToAllTest { Collection<Object[]> allToAll = new ArrayList<>(); for (Class from : factories) { for (Class to : factories) { + // NOTE: we deliberately include self-to-self here + // to test two instances of the same implementation allToAll.add(new Object[]{from, to}); } }