use of com.zimbra.cs.ephemeral.EphemeralStoreTest.TestLocation in project zm-mailbox by Zimbra.
the class LdapEphemeralStoreTest method testSet.
@Test
public void testSet() throws Exception {
EphemeralKey key = new EphemeralKey("foo");
store.set(new EphemeralInput(new EphemeralKey("foo"), "bar"), new TestLocation());
Map<String, Object> expected = makeMap("foo", "bar");
verifyAttrMap(expected);
}
Aggregations