Test reading back an instance definition.
function testReadFieldInstance() {
field_create_instance($this->instance_definition);
// Read the instance back.
$instance = field_read_instance('test_entity', $this->instance_definition['field_name'], $this->instance_definition['bundle']);
$this
->assertTrue($this->instance_definition == $instance, 'The field was properly read.');
}