assertEquals(0, actual.size());
}
@Test
public void testUpcastSerializedObject() {
final SerializedType upcastType = new SimpleSerializedType("newString", "2");
AbstractSingleEntryUpcaster<String> testSubject = new StubUpcaster("did it", upcastType);
List<SerializedObject<?>> actual = testSubject.upcast(
new SimpleSerializedObject<String>("string", String.class, "string", "1"),
Collections.singletonList(upcastType), null);