Home | History | Annotate | Download | only in collect

Lines Matching defs:of

6  * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
41 assertEquals(ImmutableSet.of(Tables.immutableCell('a', 1, "blah")), testTable.cellSet());
45 assertEquals(ImmutableMap.of(), testTable.column(0));
46 assertEquals(ImmutableMap.of('a', "blah"), testTable.column(1));
50 assertEquals(ImmutableSet.of(1), testTable.columnKeySet());
54 assertEquals(ImmutableMap.of(1, ImmutableMap.of('a', "blah")), testTable.columnMap());
58 assertEquals(ImmutableMap.of(), testTable.row('A'));
59 assertEquals(ImmutableMap.of(1, "blah"), testTable.row('a'));
63 assertEquals(ImmutableSet.of('a'), testTable.rowKeySet());
67 assertEquals(ImmutableMap.of('a', ImmutableMap.of(1, "blah")),
74 .addEqualityGroup(ImmutableTable.of(), HashBasedTable.create())
75 .addEqualityGroup(HashBasedTable.create(ImmutableTable.of('A', 2, "")))
83 .addEqualityGroup(ArrayTable.create(ImmutableSet.of('A'), ImmutableSet.of(1)))
133 return ImmutableSet.of(testTable);