public class DeserializerTest extends TestCase {
public void testShouldGetCorrectType() throws Exception {
StreamReader streamReader = TestUtils.createStreamReader("<buffalo-call><string>hi</string></buffalo-call>");
UnmarshallingContext des = new DefaultUnmarshallingContext(new DefaultConverterLookup(), streamReader);
Object o = des.convertAnother();
assertEquals("hi", o);
}