You are here

ExpectedExceptionUnitTest.inc in Coder 8.3.x

Same filename and directory in other branches
  1. 8.3 tests/DrupalPractice/Commenting/ExpectedExceptionUnitTest.inc

File

tests/DrupalPractice/Commenting/ExpectedExceptionUnitTest.inc
View source
<?php

class ExampleTest extends UnitTestCase {

  /**
   * Test 1.
   *
   * @expectedException TestException
   * @expectedExceptionCode 100
   * @expectedExceptionMessage Message here
   * @expectedExceptionMessageRegExp /.+/
   */
  public function test1() {
  }

}

Classes

Namesort descending Description
ExampleTest