import playn.core.StubPlatform;
public class TypedStorageTest
{
@Test public void testSetFor () {
Platform pf = new StubPlatform();
TypedStorage ts = new TypedStorage(pf.storage());
Function<String,String> id = Functions.identity();
RSet<String> strings = ts.setFor("strings", id, id);
assertTrue(strings.isEmpty());
strings.add("one");