You are here

public function ContentTest::getAttributeDataProvider in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/behat/mink/driver-testsuite/tests/Basic/ContentTest.php \Behat\Mink\Tests\Driver\Basic\ContentTest::getAttributeDataProvider()

File

vendor/behat/mink/driver-testsuite/tests/Basic/ContentTest.php, line 49

Class

ContentTest

Namespace

Behat\Mink\Tests\Driver\Basic

Code

public function getAttributeDataProvider() {
  return array(
    array(
      'with-value',
      'some-value',
    ),
    array(
      'without-value',
      '',
    ),
    array(
      'with-empty-value',
      '',
    ),
    array(
      'with-missing',
      null,
    ),
  );
}