You are here

public function SObjectTest::testFieldNotExists in Salesforce Suite 8.3

Same name and namespace in other branches
  1. 8.4 tests/src/Unit/SObjectTest.php \Drupal\Tests\salesforce\Unit\SObjectTest::testFieldNotExists()
  2. 5.0.x tests/src/Unit/SObjectTest.php \Drupal\Tests\salesforce\Unit\SObjectTest::testFieldNotExists()

Test invalid field call.

@expectedException Exception

File

tests/src/Unit/SObjectTest.php, line 57

Class

SObjectTest
Test Object instantitation.

Namespace

Drupal\Tests\salesforce\Unit

Code

public function testFieldNotExists() {
  $sobject = new SObject([
    'id' => '1234567890abcde',
    'attributes' => [
      'type' => 'dummy',
    ],
  ]);
  $sobject
    ->field('key');
}