You are here

SFIDTest.php in Salesforce Suite 8.3

Same filename and directory in other branches
  1. 8.4 tests/src/Unit/SFIDTest.php
  2. 5.0.x tests/src/Unit/SFIDTest.php

File

tests/src/Unit/SFIDTest.php
View source
<?php

namespace Drupal\Tests\salesforce\Unit;

use Drupal\Tests\UnitTestCase;
use Drupal\salesforce\SFID;

/**
 * Test Object instantitation.
 *
 * @group salesforce_pull
 */
class SFIDTest extends UnitTestCase {
  public static $modules = [
    'salesforce',
  ];

  /**
   * Test object instantiation with good ID.
   */
  public function testGoodId() {
    $sfid = new SFID('1234567890abcde');
    $this
      ->assertTrue($sfid instanceof SFID);
  }

  /**
   * Test object instantiation with bad ID.
   *
   * @expectedException Exception
   */
  public function testBadId() {
    new SFID('1234567890');
  }

  /**
   * Test object instantiation with bad ID.
   */
  public function testConvertId() {
    $sfid = new SFID('1234567890adcde');
    $this
      ->assertEquals('1234567890adcdeAAA', $sfid);
  }

}

Classes

Namesort descending Description
SFIDTest Test Object instantitation.