You are here

public function SimpleFbConnectFbFactoryTest::getFbServiceBadDataProvider in Simple FB Connect 8.3

Data provider for testLoginUser().

Return value

array Nested arrays of values to check.

See also

::testLoginuser()

File

tests/src/Unit/SimpleFbConnectFbFactoryTest.php, line 98

Class

SimpleFbConnectFbFactoryTest
@coversDefaultClass Drupal\simple_fb_connect\SimpleFbConnectFbFactory @group simple_fb_connect

Namespace

Drupal\Tests\simple_fb_connect\Unit

Code

public function getFbServiceBadDataProvider() {
  return [
    [
      NULL,
      NULL,
    ],
    [
      '',
      '',
    ],
    [
      '123',
      NULL,
    ],
    [
      NULL,
      'abc',
    ],
    [
      '123',
      '',
    ],
    [
      NULL,
      '',
    ],
  ];
}