PhpStorm 2019.1 Help

Creating Run/Debug Configuration for Tests

You can run your tests (test cases, test suites, and so on) using run/debug configurations, in the way similar to running ordinary applications. PhpStorm provides a framework for creating special run/debug configurations for testing purposes, where a test can be specified as a target.

In addition to the regular test configuration creation, PhpStorm supports creating test configurations for specific targets, for example for all tests in a file, class, or directory, or for an arbitrary selection of test classes and methods.

To create a test configuration

  1. Open the Run/Debug Configuration dialog by doing one of the following:

    • On the main menu, choose Run | Edit Configurations.

    • Press Shift+Alt+F10 and select Edit Configuration from the context menu.

  2. Click Add New Configuration on the toolbar and select the desired configuration type:
  3. In the dialog that opens, specify the test scope, configuration parameters, and activities to perform before test execution. Apply the changes and close the dialog

To create a test configuration for a specific target

  1. In the Project tool window, right-click the desired test directory, individual file, or class.

  2. From the context menu of the selection, choose Create Run configuration.

    create_test_configuration.png

  3. In the Run/Debug Configuration dialog that opens, specify the configuration parameters and activities to perform before test execution. Apply the changes and close the dialog.

Last modified: 26 July 2019

See Also