/**
  * Test the fields provided by the integration.
  *
  * @dataProvider providedFieldsTestCases
  */
 public function testProvidedFields($input, $field, $expected)
 {
     $entity = Media::create(['bundle' => 'video', VideoEmbedField::VIDEO_EMBED_FIELD_DEFAULT_NAME => [['value' => $input]]]);
     $actual = $this->mediaVideoPlugin->getField($entity, $field);
     $this->assertEquals($expected, $actual);
 }