public void Homogeneous_Content_Boolean_ElementType()
{
assertNull( this.element.getHomogeneous().content( false, Child.TYPE ) );
final Child child = this.element.getHomogeneous().content( true, Child.TYPE );
assertNotNull( child );
assertSame( child, this.element.getHomogeneous().content( false, Child.TYPE ) );
assertSame( child, this.element.getHomogeneous().content( true, Child.TYPE ) );
}