Download the PHP package polozpavlo/allure-phpunit without Composer
On this page you can find all versions of the php package polozpavlo/allure-phpunit. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download polozpavlo/allure-phpunit
More information about polozpavlo/allure-phpunit
Files in polozpavlo/allure-phpunit
Package allure-phpunit
Short Description A PHPUnit adapter for Allure report.
License Apache-2.0
Homepage http://allure.qatools.ru/
Informations about the package allure-phpunit
Allure PHPUnit adapter
This an official PHPUnit adapter for Allure Framework - a flexible, lightweight and multi-language framework for writing self-documenting tests.
Table of Contents
- What is this for?
- Example Project
- How to Generate Report
- Installation and Usage
- Main Features
- Title
- Description
- Test severity
- Test parameters
- Features and Stories
- Attachments
- Steps
What is this for?
The main purpose of this adapter is to accumulate information about your tests and write it out to a set of XML files: one for each test class. Then you can use a standalone command line tool or a plugin for popular continuous integration systems to generate an HTML page showing your tests in a good form.
Example project
Example project is located at: https://github.com/allure-framework/allure-phpunit-example
How to generate report
This adapter only generates XML files containing information about tests. See wiki section on how to generate report.
Installation && Usage
Note: this adapter supports Allure 1.4.x only. In order to use this adapter you need to add a new dependency to your composer.json file:
Then add Allure test listener in phpunit.xml file:
After running PHPUnit tests a new folder will be created (build/allure-results in the example above). This folder will contain generated XML files. See framework help for details about how to generate report from XML files. By default generated report will only show a limited set of information but you can use cool Allure features by adding a minimum of test code changes. Read next section for details.
Main features
This adapter comes with a set of PHP annotations and traits allowing to use main Allure features.
Human-readable test class or test method title
In order to add such title to any test class or test case method you need to annotate it with @Title annotation:
Extended test class or test method description
Similarly you can add detailed description for each test class and test method. To add such description simply use @Description annotation:
Description can be added in plain text, HTML or Markdown format - simply assign different type value.
Set test severity
@Severity annotation is used in order to prioritize test methods by severity:
Specify test parameters information
In order to add information about test method parameters you should use @Parameter annotation:
Map test classes and test methods to features and stories
In some development approaches tests are classified by stories and features. If you're using this then you can annotate your test with @Stories and @Features annotations:
You will then be able to filter tests by specified features and stories in generated Allure report.
Attach files to report
If you wish to attach some files generated during PHPUnit run (screenshots, log files, dumps and so on) to report - then you need to use AttachmentSupport trait in your test class:
In order to create an attachment simply call AttachmentSupport::addAttachment() method. This method accepts attachment type, human-readable name and a string either storing full path to the file we need to attach or file contents.
Divide test methods into steps
Allure framework also supports very useful feature called steps. Consider a test method which has complex logic inside and several assertions. When an exception is thrown or one of assertions fails sometimes it's very difficult to determine which one caused the failure. Allure steps allow to divide test method logic into several isolated pieces having independent run statuses such as passed or failed. This allows to have much more cleaner understanding of what really happens. In order to use steps simply import StepSupport trait in your test class:
The entire test method execution status will depend on every step but information about steps status will be stored separately.
All versions of allure-phpunit with dependencies
phpunit/phpunit Version >=6.0.0
mikey179/vfsstream Version 1.*
allure-framework/allure-php-api Version ~1.1.0