ru.yandex.bolts.collection.impl.EmptyCollectionTestSupport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bolts Show documentation
Show all versions of bolts Show documentation
Collections utilities used in various Yandex projects
The newest version!
package ru.yandex.bolts.collection.impl;
import ru.yandex.bolts.collection.impl.test.SerializationUtils;
import junit.framework.TestCase;
public abstract class EmptyCollectionTestSupport extends TestCase {
protected abstract Object emptyInstance();
public void testSerialization() {
assertSame(EmptyMap.INSTANCE, SerializationUtils.serializeDeserialize(EmptyMap.INSTANCE));
}
} //~