├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml ├── release-drafter.yml └── workflows │ ├── build.yml │ ├── draft-release.yml │ └── labels-verify.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── phpunit.legacy.xml ├── phpunit.php ├── phpunit.xml ├── src └── Yandex │ └── Allure │ └── Adapter │ ├── Allure.php │ ├── AllureException.php │ ├── Annotation │ ├── AllureId.php │ ├── AnnotationManager.php │ ├── AnnotationProvider.php │ ├── Description.php │ ├── Epics.php │ ├── Features.php │ ├── Issues.php │ ├── Label.php │ ├── Labels.php │ ├── Parameter.php │ ├── Parameters.php │ ├── Severity.php │ ├── Stories.php │ ├── TestCaseId.php │ ├── TestType.php │ └── Title.php │ ├── Event │ ├── AddAttachmentEvent.php │ ├── AddParameterEvent.php │ ├── ClearStepStorageEvent.php │ ├── ClearTestCaseStorageEvent.php │ ├── Event.php │ ├── RemoveAttachmentsEvent.php │ ├── StepCanceledEvent.php │ ├── StepEvent.php │ ├── StepFailedEvent.php │ ├── StepFinishedEvent.php │ ├── StepStartedEvent.php │ ├── Storage │ │ ├── StepStorage.php │ │ ├── TestCaseStorage.php │ │ └── TestSuiteStorage.php │ ├── TestCaseBrokenEvent.php │ ├── TestCaseCanceledEvent.php │ ├── TestCaseEvent.php │ ├── TestCaseFailedEvent.php │ ├── TestCaseFinishedEvent.php │ ├── TestCasePendingEvent.php │ ├── TestCaseStartedEvent.php │ ├── TestCaseStatusChangedEvent.php │ ├── TestSuiteEvent.php │ ├── TestSuiteFinishedEvent.php │ └── TestSuiteStartedEvent.php │ ├── Model │ ├── Attachment.php │ ├── ConstantChecker.php │ ├── Description.php │ ├── DescriptionType.php │ ├── Entity.php │ ├── Failure.php │ ├── Label.php │ ├── LabelType.php │ ├── Parameter.php │ ├── ParameterKind.php │ ├── Provider.php │ ├── SeverityLevel.php │ ├── Status.php │ ├── Step.php │ ├── TestCase.php │ └── TestSuite.php │ └── Support │ ├── AttachmentSupport.php │ ├── StepSupport.php │ └── Utils.php └── test └── Yandex └── Allure └── Adapter ├── AllureTest.php ├── Annotation ├── AnnotationManagerTest.php ├── AnnotationProviderTest.php └── Fixtures │ ├── ClassWithAnnotations.php │ ├── ClassWithIgnoreAnnotation.php │ ├── ExampleTestSuite.php │ └── TestAnnotation.php ├── Event ├── AddAttachmentEventTest.php ├── AddParameterEventTest.php ├── RemoveAttachmentsEventTest.php ├── StepCanceledEventTest.php ├── StepFailedEventTest.php ├── StepFinishedEventTest.php ├── StepStartedEventTest.php ├── StepStatusChangedEventTest.php ├── Storage │ ├── Fixtures │ │ └── MockedRootStepStorage.php │ ├── StepStorageTest.php │ ├── TestCaseStorageTest.php │ └── TestSuiteStorageTest.php ├── TestCaseBrokenEventTest.php ├── TestCaseCanceledEventTest.php ├── TestCaseFailedEventTest.php ├── TestCaseFinishedEventTest.php ├── TestCasePendingEventTest.php ├── TestCaseStartedEventTest.php ├── TestCaseStatusChangedEventTest.php ├── TestSuiteFinishedEventTest.php └── TestSuiteStartedEventTest.php ├── Fixtures ├── GenericStepEvent.php ├── GenericTestCaseEvent.php └── GenericTestSuiteEvent.php ├── Model ├── ConstantCheckerTest.php └── Fixtures │ └── TestConstants.php ├── Support ├── AttachmentSupportTest.php ├── MockedLifecycle.php ├── StepSupportTest.php └── UtilsTest.php ├── XMLValidationTest.php └── allure-1.4.0.xsd /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/draft-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/.github/workflows/draft-release.yml -------------------------------------------------------------------------------- /.github/workflows/labels-verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/.github/workflows/labels-verify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.legacy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/phpunit.legacy.xml -------------------------------------------------------------------------------- /phpunit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/phpunit.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Allure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Allure.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/AllureException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/AllureException.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Annotation/AllureId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Annotation/AllureId.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Annotation/AnnotationManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Annotation/AnnotationManager.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Annotation/AnnotationProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Annotation/AnnotationProvider.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Annotation/Description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Annotation/Description.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Annotation/Epics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Annotation/Epics.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Annotation/Features.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Annotation/Features.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Annotation/Issues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Annotation/Issues.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Annotation/Label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Annotation/Label.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Annotation/Labels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Annotation/Labels.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Annotation/Parameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Annotation/Parameter.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Annotation/Parameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Annotation/Parameters.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Annotation/Severity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Annotation/Severity.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Annotation/Stories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Annotation/Stories.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Annotation/TestCaseId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Annotation/TestCaseId.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Annotation/TestType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Annotation/TestType.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Annotation/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Annotation/Title.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/AddAttachmentEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/AddAttachmentEvent.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/AddParameterEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/AddParameterEvent.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/ClearStepStorageEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/ClearStepStorageEvent.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/ClearTestCaseStorageEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/ClearTestCaseStorageEvent.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/Event.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/RemoveAttachmentsEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/RemoveAttachmentsEvent.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/StepCanceledEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/StepCanceledEvent.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/StepEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/StepEvent.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/StepFailedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/StepFailedEvent.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/StepFinishedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/StepFinishedEvent.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/StepStartedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/StepStartedEvent.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/Storage/StepStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/Storage/StepStorage.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/Storage/TestCaseStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/Storage/TestCaseStorage.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/Storage/TestSuiteStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/Storage/TestSuiteStorage.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/TestCaseBrokenEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/TestCaseBrokenEvent.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/TestCaseCanceledEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/TestCaseCanceledEvent.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/TestCaseEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/TestCaseEvent.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/TestCaseFailedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/TestCaseFailedEvent.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/TestCaseFinishedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/TestCaseFinishedEvent.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/TestCasePendingEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/TestCasePendingEvent.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/TestCaseStartedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/TestCaseStartedEvent.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/TestCaseStatusChangedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/TestCaseStatusChangedEvent.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/TestSuiteEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/TestSuiteEvent.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/TestSuiteFinishedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/TestSuiteFinishedEvent.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Event/TestSuiteStartedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Event/TestSuiteStartedEvent.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Model/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Model/Attachment.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Model/ConstantChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Model/ConstantChecker.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Model/Description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Model/Description.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Model/DescriptionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Model/DescriptionType.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Model/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Model/Entity.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Model/Failure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Model/Failure.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Model/Label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Model/Label.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Model/LabelType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Model/LabelType.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Model/Parameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Model/Parameter.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Model/ParameterKind.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Model/ParameterKind.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Model/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Model/Provider.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Model/SeverityLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Model/SeverityLevel.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Model/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Model/Status.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Model/Step.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Model/Step.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Model/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Model/TestCase.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Model/TestSuite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Model/TestSuite.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Support/AttachmentSupport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Support/AttachmentSupport.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Support/StepSupport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Support/StepSupport.php -------------------------------------------------------------------------------- /src/Yandex/Allure/Adapter/Support/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/src/Yandex/Allure/Adapter/Support/Utils.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/AllureTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/AllureTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Annotation/AnnotationManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Annotation/AnnotationManagerTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Annotation/AnnotationProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Annotation/AnnotationProviderTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Annotation/Fixtures/ClassWithAnnotations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Annotation/Fixtures/ClassWithAnnotations.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Annotation/Fixtures/ClassWithIgnoreAnnotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Annotation/Fixtures/ClassWithIgnoreAnnotation.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Annotation/Fixtures/ExampleTestSuite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Annotation/Fixtures/ExampleTestSuite.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Annotation/Fixtures/TestAnnotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Annotation/Fixtures/TestAnnotation.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Event/AddAttachmentEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Event/AddAttachmentEventTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Event/AddParameterEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Event/AddParameterEventTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Event/RemoveAttachmentsEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Event/RemoveAttachmentsEventTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Event/StepCanceledEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Event/StepCanceledEventTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Event/StepFailedEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Event/StepFailedEventTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Event/StepFinishedEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Event/StepFinishedEventTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Event/StepStartedEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Event/StepStartedEventTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Event/StepStatusChangedEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Event/StepStatusChangedEventTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Event/Storage/Fixtures/MockedRootStepStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Event/Storage/Fixtures/MockedRootStepStorage.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Event/Storage/StepStorageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Event/Storage/StepStorageTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Event/Storage/TestCaseStorageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Event/Storage/TestCaseStorageTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Event/Storage/TestSuiteStorageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Event/Storage/TestSuiteStorageTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Event/TestCaseBrokenEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Event/TestCaseBrokenEventTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Event/TestCaseCanceledEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Event/TestCaseCanceledEventTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Event/TestCaseFailedEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Event/TestCaseFailedEventTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Event/TestCaseFinishedEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Event/TestCaseFinishedEventTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Event/TestCasePendingEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Event/TestCasePendingEventTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Event/TestCaseStartedEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Event/TestCaseStartedEventTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Event/TestCaseStatusChangedEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Event/TestCaseStatusChangedEventTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Event/TestSuiteFinishedEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Event/TestSuiteFinishedEventTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Event/TestSuiteStartedEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Event/TestSuiteStartedEventTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Fixtures/GenericStepEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Fixtures/GenericStepEvent.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Fixtures/GenericTestCaseEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Fixtures/GenericTestCaseEvent.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Fixtures/GenericTestSuiteEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Fixtures/GenericTestSuiteEvent.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Model/ConstantCheckerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Model/ConstantCheckerTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Model/Fixtures/TestConstants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Model/Fixtures/TestConstants.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Support/AttachmentSupportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Support/AttachmentSupportTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Support/MockedLifecycle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Support/MockedLifecycle.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Support/StepSupportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Support/StepSupportTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/Support/UtilsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/Support/UtilsTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/XMLValidationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/XMLValidationTest.php -------------------------------------------------------------------------------- /test/Yandex/Allure/Adapter/allure-1.4.0.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allure-framework/allure-php-api/HEAD/test/Yandex/Allure/Adapter/allure-1.4.0.xsd --------------------------------------------------------------------------------