blob: 28830fe40e3277caebdf3856ff00dc8935b308a9 [file] [log] [blame]
package com.fasterxml.jackson.databind.deser;
import com.fasterxml.jackson.core.*;
import com.fasterxml.jackson.databind.*;
/**
* Tests for checking handling of abstract types.
*/
public class TestAbstract
extends BaseMapTest
{
static abstract class Abstract {
public int x;
}
/*
/**********************************************************
/* Unit tests
/**********************************************************
*/
/**
* Test to verify details of how trying to deserialize into
* abstract type should fail (if there is no way to determine
* actual type information for the concrete type to use)
*/
public void testAbstractFailure() throws Exception
{
ObjectMapper m = new ObjectMapper();
try {
m.readValue("{ \"x\" : 3 }", Abstract.class);
fail("Should fail on trying to deserialize abstract type");
} catch (JsonProcessingException e) {
verifyException(e, "can not construct");
}
}
}