You are here

public function MappedObjectTest::testAlwaysUpsert in Salesforce Suite 8.3

Same name and namespace in other branches
  1. 8.4 modules/salesforce_mapping/tests/src/Unit/MappedObjectTest.php \Drupal\Tests\salesforce_mapping\Unit\MappedObjectTest::testAlwaysUpsert()
  2. 5.0.x modules/salesforce_mapping/tests/src/Unit/MappedObjectTest.php \Drupal\Tests\salesforce_mapping\Unit\MappedObjectTest::testAlwaysUpsert()

@covers ::push

File

modules/salesforce_mapping/tests/src/Unit/MappedObjectTest.php, line 224

Class

MappedObjectTest
Test Mapped Object instantitation.

Namespace

Drupal\Tests\salesforce_mapping\Unit

Code

public function testAlwaysUpsert() {

  // Fourth pass: test always upsert.
  $this->mapped_object
    ->expects($this
    ->any())
    ->method('sfid')
    ->willReturn($this->sfid);
  $this->mapping
    ->expects($this
    ->any())
    ->method('alwaysUpsert')
    ->willReturn(TRUE);
  $this->mapping
    ->expects($this
    ->once())
    ->method('hasKey')
    ->will($this
    ->returnValue(TRUE));
  $this->client
    ->expects($this
    ->once())
    ->method('objectUpsert')
    ->willReturn(NULL);
  $this
    ->assertNull($this->mapped_object
    ->push());
}