- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for testCartesianProduct_binary1x2 (0.34 seconds)
-
guava-tests/test/com/google/common/collect/ListsTest.java
return ImmutableList.copyOf(elements); } public void testCartesianProduct_binary1x1() { assertThat(cartesianProduct(list(1), list(2))).contains(list(1, 2)); } public void testCartesianProduct_binary1x2() { assertThat(cartesianProduct(list(1), list(2, 3))) .containsExactly(list(1, 2), list(1, 3)) .inOrder(); } public void testCartesianProduct_binary2x2() {
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 35.4K bytes - Click Count (0)