2. Attributes

    PHP 8 introduced attributes as “a form of structured, syntactic metadata to declarations of classes, properties, functions, methods, parameters and constants. Attributes allow to define configuration directives directly embedded with the declaration of that code.”

    PHPUnit will first look for metadata in attributes before it looks for annotations in comments. When metadata is found in attributes, metadata in comments is ignored.

    The attributes supported by PHPUnit are all declared in the PHPUnit\Framework\Attributes namespace. They are documented in this appendix.

    As an alternative to prefixing your test method names with test, you can use the Test attribute to mark it as a test method.

    Example 2.14 Using the Test attribute

    TestDox

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    yes

    no

    The TestDox(string $text) attribute can be used to customize the text that is printed for a test when TestDox output is enabled.

    Example 2.15 Using the TestDox attribute

    1. <?php declare(strict_types=1);
    2. use PHPUnit\Framework\Attributes\TestDox;
    3. use PHPUnit\Framework\TestCase;
    4. final class ExampleTest extends TestCase
    5. {
    6. #[TestDox('It does something')]
    7. public function testOne(): void
    8. {
    9. // ...
    10. }
    11. }

    Running the test shown above with TestDox output enabled yields the output shown below:

    1. $ ./tools/phpunit --no-progress --testdox tests/ExampleTest.php
    2. PHPUnit 10.0.0 by Sebastian Bergmann and contributors.
    3. Runtime: PHP 8.2.2
    4. Time: 00:00.057, Memory: 6.00 MB
    5. Example
    6. It does something
    7. OK (1 test, 1 assertion)

    When you use the TestDox attribute for a test method that uses a then you may use the method parameters as placeholders in your alternative description.

    Example 2.16 Using the TestDox attribute together with data providers

    Running the test shown above with TestDox output enabled yields the output shown below:

    1. $ ./tools/phpunit --no-progress --testdox tests/ExampleTest.php
    2. PHPUnit 10.0.0 by Sebastian Bergmann and contributors.
    3. Runtime: PHP 8.2.2
    4. Time: 00:00.116, Memory: 8.00 MB
    5. Example
    6. Adding 0 to 0 results in 0
    7. Adding 1 to 0 results in 1
    8. Adding 0 to 1 results in 1
    9. Adding 1 to 1 results in 3
    10. Failed asserting that 2 is identical to 3.
    11. /path/to/ExampleTest.php:12
    12. FAILURES!
    13. Tests: 4, Assertions: 4, Failures: 1.

    Additionally, $_dataName is available and holds the name of the current data. That would be data set 1 through data set 4 in the example shown above.

    DoesNotPerformAssertions

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    yes

    no

    By default, PHPUnit considers a test that does not perform assertions and does not configure expectations on mock objects as . The DoesNotPerformAssertions attribute can be used to prevent this.

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    no

    yes

    The CoversClass(string $className) attribute can be used to specify that a test intends to cover the given class.

    CoversFunction

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    no

    yes

    The CoversFunction(string $functionName) attribute can be used to specify that a test intends to cover the given global function.

    CoversNothing

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    yes

    no

    The CoversNothing() attribute can be used to specify that a test does not intend to contribute to code coverage.

    UsesClass

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    no

    yes

    The UsesClass(string $className) attribute can be used to specify that a test allows the execution of code in the given class, but does not intend to cover it. This is relevant in the context of .

    UsesFunction

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    no

    yes

    The UsesFunction(string $functionName) attribute can be used to that a test allows the execution of code in the given global function, but does not intend to cover it. This is relevant in the context of preventing unintentionally covered code.

    CodeCoverageIgnore

    Context

    Class Level

    Method Level

    Repeatable

    Production Code

    yes

    yes

    no

    The CodeCoverageIgnore attribute can be used in production code to ignore a class or method for code coverage.

    Warning

    Using this attribute in production code may lead to problems when the code production code uses the Reflection API to instantiate attributes it is not responsible for, for instance PHPUnit’s.

    Data Provider

    DataProvider

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    no

    yes

    yes

    The DataProvider(string $methodName) attribute can be used on a test method to specify a static method that is declared in the same class as the test method as a .

    DataProviderExternal

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    no

    yes

    yes

    The DataProviderExternal(string $className, string $methodName) attribute can be used on a test method to specify a static method that is declared in another class as a .

    TestWith

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    no

    yes

    yes

    The TestWith(array $data) attribute can be used to define a for a test method without having to implement a static data provider method.

    Example 2.17 Using the TestWith attribute

    1. <?php declare(strict_types=1);
    2. use PHPUnit\Framework\Attributes\TestWith;
    3. use PHPUnit\Framework\TestCase;
    4. {
    5. #[TestWith([0, 0, 0])]
    6. #[TestWith([0, 1, 1])]
    7. #[TestWith([1, 0, 1])]
    8. #[TestWith([1, 1, 3])]
    9. public function testAdd(int $a, int $b, int $expected): void
    10. {
    11. $this->assertSame($expected, $a + $b);
    12. }
    13. }

    Running the test shown above yields the output shown below:

    TestWithJson

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    no

    yes

    yes

    The TestWithJson(string $json) attribute can be used to define a for a test method without having to implement a static data provider method.

    Example 2.18 Using the TestWithJson attribute

    1. <?php declare(strict_types=1);
    2. use PHPUnit\Framework\Attributes\TestWithJson;
    3. use PHPUnit\Framework\TestCase;
    4. final class DataTest extends TestCase
    5. {
    6. #[TestWithJson('[0, 0, 0]')]
    7. #[TestWithJson('[0, 1, 1]')]
    8. #[TestWithJson('[1, 0, 1]')]
    9. #[TestWithJson('[1, 1, 3]')]
    10. public function testAdd(int $a, int $b, int $expected): void
    11. {
    12. $this->assertSame($expected, $a + $b);
    13. }
    14. }

    Running the test shown above yields the output shown below:

    1. ./tools/phpunit tests/DataTest.php
    2. PHPUnit 10.0.0 by Sebastian Bergmann and contributors.
    3. Runtime: PHP 8.2.2
    4. ...F 4 / 4 (100%)
    5. Time: 00:00.058, Memory: 8.00 MB
    6. There was 1 failure:
    7. 1) DataTest::testAdd with data set #3
    8. Failed asserting that 2 is identical to 3.
    9. /path/to/DataTest.php:10
    10. FAILURES!
    11. Tests: 4, Assertions: 4, Failures: 1.

    Test Dependencies

    Depends

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    no

    yes

    yes

    The Depends(string $methodName) attribute can be used to specify that a test depends on another test that is declared in the same test case class.

    Any value that is passed from a producer (a depended-upon test) to a consumer (the depending test) is passed without cloning it.

    DependsUsingDeepClone

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    no

    yes

    yes

    The DependsUsingDeepClone(string $methodName) attribute can be used to specify that a test depends on another test that is declared in the same test case class.

    Any value that is passed from a producer (a depended-upon test) to a consumer (the depending test) is passed after deep-cloning it.

    DependsUsingShallowClone

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    no

    yes

    yes

    The DependsUsingShallowClone(string $methodName) attribute can be used to specify that a test depends on another test that is declared in the same test case class.

    Any value that is passed from a producer (a depended-upon test) to a consumer (the depending test) is passed after shallow-cloning it.

    DependsExternal

    The DependsExternal(string $className, string $methodName) attribute can be used to specify that a test depends on another test that is declared in another test case class.

    Any value that is passed from a producer (a depended-upon test) to a consumer (the depending test) is passed without cloning it.

    DependsExternalUsingDeepClone

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    no

    yes

    yes

    The DependsExternalUsingDeepClone(string $className, string $methodName) attribute can be used to specify that a test depends on another test that is declared in another test case class.

    Any value that is passed from a producer (a depended-upon test) to a consumer (the depending test) is passed after deep-cloning it.

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    no

    yes

    yes

    The attribute can be used to specify that a test depends on another test that is declared in another test case class.

    Any value that is passed from a producer (a depended-upon test) to a consumer (the depending test) is passed after shallow-cloning it.

    DependsOnClass

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    no

    yes

    yes

    The DependsOnClass(string $className) attribute can be used to specify that a test depends on all tests of another test case class.

    Any value that is passed from a producer (a depended-upon test) to a consumer (the depending test) is passed without cloning it.

    DependsOnClassUsingDeepClone

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    no

    yes

    yes

    The DependsOnClassUsingDeepClone(string $className) attribute can be used to specify that a test depends on all tests of another test case class.

    Any value that is passed from a producer (a depended-upon test) to a consumer (the depending test) is passed after deep-cloning it.

    DependsOnClassUsingShallowClone

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    no

    yes

    yes

    The DependsOnClassUsingShallowClone(string $className) attribute can be used to specify that a test depends on all tests of another test case class.

    Any value that is passed from a producer (a depended-upon test) to a consumer (the depending test) is passed after shallow-cloning it.

    Group

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    yes

    yes

    The Group(string $name) attribute can be used to assign tests to test groups.

    Groups can be used, for instance, to which tests should be run.

    Small

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    no

    no

    The Small attribute is an alias for Group('small').

    The group named small has special semantics that is relevant in the context of , for instance.

    Tests that are marked as small cause the lines of code that they cover to be highlighted by a darker shade of green in the HTML code coverage report compared to tests that are marked or large.

    Medium

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    no

    no

    The Medium attribute is an alias for Group('medium').

    The group named medium has special semantics that is relevant in the context of test execution timeouts, for instance.

    Tests that are marked as medium cause the lines of code that they cover to be highlighted by a darker shade of green in the HTML report compared to tests that are marked large and by a lighter shade of green compared to test that are marked small .

    Large

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    no

    no

    The Large attribute is an alias for Group('large').

    The group named large has special semantics that is relevant in the context of , for instance.

    Tests that are marked as large cause the lines of code that they cover to be highlighted by a lighter shade of green in the HTML code coverage report compared to tests that are marked or small.

    Ticket

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    yes

    yes

    The Ticket(string $text) attribute is an alias for Group(string $text).

    Template Methods

    BeforeClass

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    no

    yes

    no

    The BeforeClass attribute can be used to specify that a public static method should be invoked before the first test method of a test case class is run. This is equivalent to naming the method setUpBeforeClass().

    The topic of template methods such as setUpBeforeClass() is discussed in the chapter on fixtures.

    Before

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    no

    yes

    no

    The Before attribute can be used to specify that a protected non-static method should be invoked before each test method of a test case class is run. This is equivalent to naming the method setUp().

    The topic of template methods such as setUp() is discussed in the chapter on fixtures.

    PreCondition

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    no

    yes

    no

    The PreCondition attribute can be used to specify that a protected non-static method should be invoked before each test method (but after any setUp() methods) of a test case class is run. This is equivalent to naming the method assertPreConditions().

    PostCondition

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    no

    yes

    no

    The PostCondition attribute can be used to specify that a protected non-static method should be invoked before each test method (but before any tearDown() methods) of a test case class is run. This is equivalent to naming the method assertPostConditions().

    After

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    no

    yes

    no

    The After attribute can be used to specify that a protected non-static method should be invoked after each test method of a test case class is run. This is equivalent to naming the method tearDown().

    The topic of template methods such as tearDown() is discussed in the chapter on fixtures.

    AfterClass

    The AfterClass attribute can be used to specify that a public static method should be invoked after the last test method of a test case class is run. This is equivalent to naming the method tearDownAfterClass().

    The topic of template methods such as tearDownAfterClass() is discussed in the chapter on fixtures.

    Test Isolation

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    yes

    no

    The BackupGlobals attribute can be used to specify that global and super-global variables should be backed up before a test and then restored after the test has been run.

    ExcludeGlobalVariableFromBackup

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    yes

    yes

    The ExcludeGlobalVariableFromBackup($globalVariableName) attribute can be used to exclude the specified global variable from the backup and restore operations for global and super-global variables.

    BackupStaticProperties

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    yes

    no

    The BackupStaticProperties attribute can be used to specify that static properties of classes should be backed up before a test and then restored after the test has been run.

    ExcludeStaticPropertyFromBackup

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    yes

    yes

    The ExcludeStaticPropertyFromBackup(string $className, string $propertyName) attribute can be used to exclude the specified static property from the backup and restore operations for static properties of classes.

    RunInSeparateProcess

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    no

    yes

    no

    The RunInSeparateProcess attribute can be used to specify that a test should be run in a separate process.

    RunTestsInSeparateProcesses

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    no

    no

    The RunTestsInSeparateProcesses attribute can be used to specify that all tests of a test case class should be run in separate processes (one separate process per test).

    RunClassInSeparateProcess

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    no

    no

    The RunClassInSeparateProcess attribute can be used to specify that all tests of a test case class should be run in a (single) separate process.

    PreserveGlobalState

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    yes

    no

    The PreserveGlobalState(bool $enabled) attribute can be used to specify whether the global state of the main PHPUnit test runner process should be made available in the child process when a test is run in a separate process.

    RequiresPhp

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    yes

    no

    The RequiresPhp(string $versionRequirement) attribute can be used to skip the execution of a test when the PHP version used to run PHPUnit does not match the specified version requirement.

    $versionRequirement can either be a that is optionally preceded by an operator supported by PHP’s version_compare() function or a version constraint in the syntax that is supported by Composer.

    Here are some examples:

    • #[RequiresPhp('8.3.0')]

    • #[RequiresPhp('>= 8.3.0')]

    • #[RequiresPhp('^8.3')]

    RequiresPhpExtension

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    yes

    yes

    The RequiresPhpExtension(string $extension[, string $versionRequirement]) attribute can be used to skip the execution of a test when the specified PHP extension is not available. The optional $versionRequirement argument can be used to specify a version requirement for this PHP extension and follows the same format that is described .

    Here are some examples:

    • #[RequiresPhpExtension('mysqli')]

    • #[RequiresPhpExtension('mysqli', '>= 8.3.0')]

    • #[RequiresPhpExtension('mysqli', '^8.3')]

    RequiresSetting

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    yes

    yes

    The RequiresSetting(string $setting, string $value) attribute can be used to when the specified PHP configuration setting is not set to the expected value.

    RequiresPhpunit

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    yes

    no

    The RequiresPhpunit(string $versionRequirement) attribute can be used to when the PHPUnit version does not match the specified version requirement.

    $versionRequirement can either be a version number string that is optionally preceded by an operator supported by PHP’s version_compare() function or a in the syntax that is supported by Composer.

    Here are some examples:

    • #[RequiresPhpunit('10.1.0')]

    • #[RequiresPhpunit('>= 10.1.0')]

    RequiresFunction

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    yes

    yes

    The RequiresFunction(string $functionName) attribute can be used to when the specified global function is not declared.

    RequiresMethod

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    yes

    yes

    The RequiresMethod(string $className, string $methodName) attribute can be used to when the specified method is not declared.

    RequiresOperatingSystem

    Context

    Class Level

    Method Level

    Repeatable

    Test Code

    yes

    yes

    no

    The RequiresOperatingSystem(string $regularExpression) attribute can be used to when the specified regular expression does not match the value of the PHP_OS constant provided by PHP.

    The attribute can be used to when the specified string is not identical to the value of the PHP_OS_FAMILY constant provided by PHP.