You are here

public function SchemaTest::testFieldDoesNotExistException in Drupal driver for SQL Server and SQL Azure 4.0.x

Same name and namespace in other branches
  1. 8.2 tests/src/Kernel/SchemaTest.php \Drupal\Tests\sqlsrv\Kernel\SchemaTest::testFieldDoesNotExistException()
  2. 4.2.x tests/src/Kernel/SchemaTest.php \Drupal\Tests\sqlsrv\Kernel\SchemaTest::testFieldDoesNotExistException()
  3. 3.0.x tests/src/Kernel/SchemaTest.php \Drupal\Tests\sqlsrv\Kernel\SchemaTest::testFieldDoesNotExistException()
  4. 3.1.x tests/src/Kernel/SchemaTest.php \Drupal\Tests\sqlsrv\Kernel\SchemaTest::testFieldDoesNotExistException()
  5. 4.1.x tests/src/Kernel/SchemaTest.php \Drupal\Tests\sqlsrv\Kernel\SchemaTest::testFieldDoesNotExistException()

Exception thrown when field does not exist.

File

tests/src/Kernel/SchemaTest.php, line 244

Class

SchemaTest
Tests table creation and modification via the schema API.

Namespace

Drupal\Tests\sqlsrv\Kernel

Code

public function testFieldDoesNotExistException() {
  $this
    ->expectException(SchemaObjectDoesNotExistException::class);
  $this->schema
    ->changeField('test', 'age1', 'age2', $this->table['fields']['age']);
}