We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d8fa6f commit b94d18bCopy full SHA for b94d18b
tests/org/cicirello/sequences/distance/SequenceDistanceTests.java
@@ -958,6 +958,17 @@ private void helperKendallTauDistanceExceptionsDiffElements(final KendallTauSequ
958
IllegalArgumentException.class,
959
() -> d.distance(bool1, bool2)
960
);
961
+ final String diffCounts1 = "ababa";
962
+ final String diffCounts2 = "babab";
963
+ thrown = assertThrows(
964
+ IllegalArgumentException.class,
965
+ () -> d.distance(diffCounts1, diffCounts2)
966
+ );
967
+ final String diffCounts3 = "aaaab";
968
969
970
+ () -> d.distance(diffCounts1, diffCounts3)
971
972
}
973
974
@Test
0 commit comments