show/hide this revision's text 3 fix var name
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 */
    }
}
show/hide this revision's text 2 Expanded code example
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 = MyFactory.createAppropriateObject();
    if (! int instanceof ExpectedConcreteClass)
    {
        /* FAIL */
    }
}
show/hide this revision's text 1
if (myNewObject instanceof CorrectClass)
{
    /* pass test */
}