if (myNewObject instanceof CorrectClass)
{
/* pass test */
}
update:
Don't know why this got marked down, so I'll expand it a bit...
public void doTest()
{
MyInterface int inst = MyFactory.createAppropriateObject();
if (! int inst instanceof ExpectedConcreteClass)
{
/* FAIL */
}
}
