public void testIsNullValue() {
try {
Assert.assertFalse( this.extractor.isNullValue( null,
this.person[0] ) );
Extractor nullExtractor = ClassFieldExtractorCache.getInstance().getExtractor( Person.class,
"addresses['business'].phone",
getClass().getClassLoader() );
Assert.assertTrue( nullExtractor.isNullValue( null,
this.person[0] ) );
} catch ( final Exception e ) {
fail( "Should not throw an exception" );
}
}