You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+53-2
Original file line number
Diff line number
Diff line change
@@ -19,5 +19,56 @@ In order to use this API you simply need to add the following to **composer.json
19
19
}
20
20
```
21
21
22
-
## Usage examples
23
-
See [allure-phpunit](https://github.com/allure-framework/allure-phpunit) project.
22
+
## Custom attributes
23
+
You can easily implement custom attributes and use them with your test framework. In most cases you would like
24
+
to implement [`Qameta\Allure\Attribute\AttributeSetInterface`](./src/Attribute/AttributeSetInterface.php) that allows to set several attributes at once:
25
+
26
+
```php
27
+
<?php
28
+
29
+
use Qameta\Allure\Attribute\AttributeSetInterface;
0 commit comments