You are here

public function TagViewTest::formatSizeProvider in Doubleclick for Publishers (DFP) 8

Data provider for self::testFormatSize().

File

tests/src/Unit/View/TagViewTest.php, line 33
Contains \Drupal\Tests\dfp\Unit\View\TagViewTest.

Class

TagViewTest
@coversDefaultClass \Drupal\dfp\View\TagView @group dfp

Namespace

Drupal\Tests\dfp\Unit\View

Code

public function formatSizeProvider() {
  return [
    [
      '<none>',
      '[]',
    ],
    [
      'fluid',
      "'fluid'",
    ],
    [
      '300x250 ',
      '[300, 250]',
    ],
    [
      '300x250, 728x90 ',
      '[[300, 250], [728, 90]]',
    ],
    [
      '300x250, 728x90, fluid',
      "[[300, 250], [728, 90], 'fluid']",
    ],
  ];
}