You are here

public function UrlHelperTest::providerTestInvalidAbsolute in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Component/Utility/UrlHelperTest.php \Drupal\Tests\Component\Utility\UrlHelperTest::providerTestInvalidAbsolute()

Provides data for testInvalidAbsolute().

Return value

array

File

core/tests/Drupal/Tests/Component/Utility/UrlHelperTest.php, line 104
Contains \Drupal\Tests\Component\Utility\UrlHelperTest.

Class

UrlHelperTest
@group Utility

Namespace

Drupal\Tests\Component\Utility

Code

public function providerTestInvalidAbsolute() {
  $data = array(
    '',
    'ex!ample.com',
    'ex%ample.com',
  );
  return $this
    ->dataEnhanceWithScheme($data);
}