├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature-request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── auto-close.yml │ ├── build.yml │ ├── qodana.yml │ ├── release.yml │ └── run-ui-tests.yml ├── .gitignore ├── .run ├── Run IDE with Plugin.run.xml ├── Run Plugin Tests.run.xml ├── Run Plugin Verification.run.xml └── Run Qodana.run.xml ├── BUILD.bazel ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── art ├── banner.png └── icons │ ├── config@dark.svg │ ├── config@light.svg │ ├── dataset@dark.svg │ ├── dataset@light.svg │ ├── file@dark.svg │ ├── file@light.svg │ ├── run@dark.svg │ └── run@light.svg ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── intellij.pest.iml ├── plugin-content.yaml ├── settings.gradle.kts └── src ├── main ├── java │ └── com │ │ └── pestphp │ │ └── pest │ │ ├── PestIcons.java │ │ └── configuration │ │ ├── PestRunConfigurationSettings.java │ │ └── PhpTestRunConfiguration.java ├── kotlin │ └── com │ │ └── pestphp │ │ └── pest │ │ ├── FileUtil.kt │ │ ├── PestBundle.kt │ │ ├── PestComposerConfig.kt │ │ ├── PestFrameworkType.kt │ │ ├── PestFunctionsUtil.kt │ │ ├── PestIconProvider.kt │ │ ├── PestNamingUtil.kt │ │ ├── PestNewTestFromClassAction.kt │ │ ├── PestSettings.kt │ │ ├── PestTestCreateInfo.kt │ │ ├── PestTestDescriptor.kt │ │ ├── PestTestFileUtil.kt │ │ ├── PestTestRunLineMarkerProvider.kt │ │ ├── PestUtil.kt │ │ ├── annotator │ │ ├── PestAnnotator.kt │ │ └── PestAnnotatorVisitor.kt │ │ ├── completion │ │ ├── InternalMembersCompletionProvider.kt │ │ ├── PestCompletionContributor.kt │ │ ├── PestCustomExtensionCompletionProvider.kt │ │ └── ThisFieldsCompletionProvider.kt │ │ ├── configuration │ │ ├── PestDebugRunner.kt │ │ ├── PestLocationProvider.kt │ │ ├── PestRerunFailedTestsAction.kt │ │ ├── PestRerunProfile.kt │ │ ├── PestRunConfiguration.kt │ │ ├── PestRunConfigurationHandler.kt │ │ ├── PestRunConfigurationProducer.kt │ │ ├── PestRunConfigurationType.kt │ │ ├── PestRunnerSettings.kt │ │ ├── PestTestRunConfigurationEditor.kt │ │ └── PestVersionDetector.kt │ │ ├── coverage │ │ ├── PestCoverageEnabledConfiguration.kt │ │ ├── PestCoverageEngine.kt │ │ └── PestCoverageProgramRunner.kt │ │ ├── features │ │ ├── configuration │ │ │ ├── ConfigurationInDirectoryReferenceProvider.kt │ │ │ ├── ConfigurationReferenceContributor.kt │ │ │ └── PhpFolderReferenceSet.kt │ │ ├── customExpectations │ │ │ ├── CustomExpectationIndex.kt │ │ │ ├── CustomExpectationNotifier.kt │ │ │ ├── CustomExpectationParameterInfoHandler.kt │ │ │ ├── CustomExpectationRemoveGeneratedFileStartupActivity.kt │ │ │ ├── ListMethodDataExternalizer.kt │ │ │ ├── MethodDataExternalizer.kt │ │ │ ├── expectationUtil.kt │ │ │ ├── externalizers │ │ │ │ ├── ListDataExternalizer.kt │ │ │ │ ├── MethodDataExternalizer.kt │ │ │ │ ├── ParameterDataExternalizer.kt │ │ │ │ └── PhpTypeDataExternalizer.kt │ │ │ ├── generators │ │ │ │ ├── ExpectationGenerator.kt │ │ │ │ ├── Method.kt │ │ │ │ └── Parameter.kt │ │ │ └── symbols │ │ │ │ ├── PestCustomExpectationReference.kt │ │ │ │ ├── PestCustomExpectationReferenceProvider.kt │ │ │ │ ├── PestCustomExpectationRenameUsageSearcher.kt │ │ │ │ ├── PestCustomExpectationSymbol.kt │ │ │ │ ├── PestCustomExpectationSymbolDeclaration.kt │ │ │ │ ├── PestCustomExpectationSymbolDeclarationProvider.kt │ │ │ │ └── PestCustomExpectationUsageSearcher.kt │ │ ├── datasets │ │ │ ├── DatasetIndex.kt │ │ │ ├── DatasetReference.kt │ │ │ ├── DatasetReferenceContributor.kt │ │ │ ├── DatasetReferenceProvider.kt │ │ │ ├── DatasetUtil.kt │ │ │ ├── InvalidDatasetNameCaseInspection.kt │ │ │ └── InvalidDatasetReferenceInspection.kt │ │ ├── mutate │ │ │ ├── PestMutateProgramRunner.kt │ │ │ └── PestMutateTestExecutor.kt │ │ ├── parallel │ │ │ ├── PestParallelProgramRunner.kt │ │ │ ├── PestParallelSMTEventsAdapter.kt │ │ │ └── PestParallelTestExecutor.kt │ │ └── snapshotTesting │ │ │ ├── SnapshotLineMarkerProvider.kt │ │ │ └── SnapshotUtil.kt │ │ ├── goto │ │ ├── PestDatasetUsagesGotoHandler.kt │ │ ├── PestGotoTargetPresentationProvider.kt │ │ ├── PestTestFinder.kt │ │ └── PestTestGoToSymbolContributor.kt │ │ ├── indexers │ │ └── PestTestIndex.kt │ │ ├── inspections │ │ ├── ChangeMultipleExpectCallsToChainableQuickFix.kt │ │ ├── ChangeTestNameCasingQuickFix.kt │ │ ├── InvalidTestNameCaseInspection.kt │ │ ├── MissingScreenshotSnapshotInspection.kt │ │ ├── MultipleExpectChainableInspection.kt │ │ ├── PestAssertionCanBeSimplifiedInspection.kt │ │ ├── PestTestFailedLineInspection.kt │ │ ├── SuppressExpressionResultUnusedInspection.kt │ │ └── SuppressUndefinedPropertyInspection.kt │ │ ├── notifications │ │ └── OutdatedNotification.kt │ │ ├── parser │ │ ├── PestConfigurationFile.kt │ │ └── PestConfigurationFileParser.kt │ │ ├── runner │ │ ├── LocationInfo.kt │ │ ├── PestConsoleProperties.kt │ │ ├── PestFailedLineManager.kt │ │ ├── PestPressToContinueAction.kt │ │ ├── PestPromptConsoleFolding.kt │ │ └── PestTestStackTraceParser.kt │ │ ├── statistics │ │ └── PestUsagesCollector.kt │ │ ├── structureView │ │ ├── PestStructureViewElement.kt │ │ └── PestStructureViewExtension.kt │ │ ├── surrounders │ │ ├── ExpectStatementSurrounder.kt │ │ └── StatementSurroundDescriptor.kt │ │ ├── templates │ │ ├── PestConfigNewDatasetFileAction.kt │ │ ├── PestConfigNewFileAction.kt │ │ ├── PestDescribePostfixTemplate.kt │ │ ├── PestItPostfixTemplate.kt │ │ ├── PestPostfixTemplateProvider.kt │ │ └── PestRootTemplateContextType.kt │ │ └── types │ │ ├── HigherOrderExtendTypeProvider.kt │ │ ├── InnerTestTypeProvider.kt │ │ ├── ThisExtendTypeProvider.kt │ │ ├── ThisFieldTypeProvider.kt │ │ └── ThisTypeProvider.kt └── resources │ ├── META-INF │ ├── pest-coverage.xml │ ├── plugin.xml │ └── pluginIcon.svg │ ├── config.svg │ ├── config_dark.svg │ ├── dataset.svg │ ├── dataset_dark.svg │ ├── file.svg │ ├── fileTemplates │ └── internal │ │ ├── Pest It.php.ft │ │ ├── Pest Scoped Dataset.php.ft │ │ ├── Pest Shared Dataset.php.ft │ │ ├── Pest Test.php.ft │ │ └── Pest file from class.php.ft │ ├── file_dark.svg │ ├── inspectionDescriptions │ ├── InvalidDatasetNameCaseInspection.html │ ├── InvalidDatasetReferenceInspection.html │ ├── InvalidTestNameCaseInspection.html │ ├── MissingScreenshotSnapshotInspection.html │ ├── MultipleExpectChainableInspection.html │ ├── PestAssertionCanBeSimplifiedInspection.html │ └── PestTestFailedLineInspection.html │ ├── liveTemplates │ └── PestPHP.xml │ ├── log4j.properties │ ├── logo.svg │ ├── logo_dark.svg │ ├── messages │ └── pestBundle.properties │ ├── postfixTemplates │ ├── PestDescribePostfixTemplate │ │ ├── after.php.template │ │ ├── before.php.template │ │ └── description.html │ └── PestItPostfixTemplate │ │ ├── after.php.template │ │ ├── before.php.template │ │ └── description.html │ ├── run.svg │ ├── runWithMutate.svg │ ├── runWithMutate_dark.svg │ └── run_dark.svg └── test ├── kotlin └── com │ └── pestphp │ └── pest │ ├── PestIconProviderTest.kt │ ├── PestLightCodeFixture.kt │ ├── PestTestRunLineMarkerProviderTest.kt │ ├── annotator │ └── PestAnnotatorTest.kt │ ├── codeInsight │ └── typeInference │ │ └── PestTypeInferenceTest.kt │ ├── configuration │ ├── PestLocationProviderTest.kt │ ├── PestRunConfigurationTest.kt │ ├── PestVersionDetectorTest.kt │ ├── PestVersionParserTest.kt │ ├── pest │ │ └── PestConfigurationFileTest.kt │ └── uses │ │ └── PestConfigurationFileTest.kt │ ├── coverage │ └── PestCoverageProgramRunnerTest.kt │ ├── customExpectations │ ├── ListMethodDataExternalizerTest.kt │ ├── MethodDataExternalizerTest.kt │ └── generators │ │ └── ExpectationGeneratorTest.kt │ ├── features │ ├── configuration │ │ ├── PestCompletionTest.kt │ │ └── UsesCompletionTest.kt │ ├── datasets │ │ ├── DatasetCompletionTest.kt │ │ ├── DatasetGoToTest.kt │ │ ├── DatasetIndexTest.kt │ │ ├── DatasetReferenceTest.kt │ │ ├── DatasetUsagesTest.kt │ │ ├── InvalidDatasetNameCaseInspectionTest.kt │ │ └── InvalidDatasetReferenceInspectionTest.kt │ ├── mutate │ │ └── PestMutateProgramRunnerTest.kt │ ├── parallel │ │ ├── PestParallelProgramRunnerTest.kt │ │ └── PestParallelSMTEventsAdapterTest.kt │ └── snapshotTesting │ │ ├── SnapshotLineMarkerProviderTest.kt │ │ └── SnapshotUtilTest.kt │ ├── generateTest │ └── PestNewTestFromClassActionTest.kt │ ├── goto │ └── PestTestFinderTest.kt │ ├── higherOrderExpectations │ ├── HigherOrderExpectationAssertionCompletionTest.kt │ └── HigherOrderExpectationCompletionTest.kt │ ├── indexers │ └── PestTestIndexTest.kt │ ├── inspections │ ├── InvalidTestNameCaseInspectionTest.kt │ ├── MissingScreenshotSnapshotInspectionTest.kt │ ├── MultipleExpectChainableInspectionTest.kt │ ├── PestAssertionCanBeSimplifiedInspectionTest.kt │ ├── PestTestFailedLineInspectionTest.kt │ └── PhpStormInspectionsTest.kt │ ├── runner │ ├── PestPressToContinueActionTest.kt │ └── PestTestStackTraceParserTest.kt │ ├── surrounders │ ├── ExpectStatementSurrounderTest.kt │ └── SurroundTestCase.kt │ ├── templates │ └── PestPostfixTemplateProviderTest.kt │ ├── types │ ├── BaseTypeTestCase.kt │ ├── ExpectCallCompletionTest.kt │ ├── FunctionTypeTest.kt │ ├── ThisFieldCompletionTest.kt │ ├── ThisFieldTypeTest.kt │ └── ThisTypeTest.kt │ └── utilTests │ ├── GetPestTestNameTests.kt │ ├── GetPestTestsTest.kt │ ├── IsPestTestFileTest.kt │ ├── IsPestTestFunctionTest.kt │ ├── PestUtilTest.kt │ ├── ToPestFqnTests.kt │ └── ToPestTestRegexTests.kt └── resources └── com └── pestphp └── pest ├── Dataset.php ├── Pest.php ├── PestTestRunLineMarkerProviderTest ├── AssignmentFunctionCallNamedTest.php ├── AssignmentFunctionCallNamedTestWithoutPest.php ├── FunctionCallNamedTestAsArgument.php ├── FunctionCallNamedTestInsideDescribeBlock.php ├── FunctionCallNamedTestInsideTest.php ├── FunctionCallNamedTestWithoutPest.php ├── MethodCallNamedItAndVariableTest.php ├── NamedDataSets.php ├── PestItFunctionCallWithDescriptionAndClosure.php ├── PestItFunctionCallWithRedefinition.php └── contextProject │ └── tests │ └── Test.php ├── PestUtil ├── MethodCallNamedIt.php ├── MethodCallNamedItAndVariableTest.php ├── MethodCallNamedTest.php ├── NestedDescribeFunctionCalls.php ├── PestArchFunctionCall.php ├── PestDescribeBlock.php ├── PestDescribeBlockAndTestFunctionEndOfLine.php ├── PestItFunctionCallWithConcatString.php ├── PestItFunctionCallWithDescriptionAndClosure.php ├── PestItFunctionCallWithDescriptionAndHigherOrder.php ├── PestTestFunctionCallWithCircumflex.php ├── PestTestFunctionCallWithConcatString.php ├── PestTestFunctionCallWithDescriptionAndClosure.php ├── PestTestFunctionCallWithDescriptionAndHigherOrder.php ├── PestTestFunctionCallWithNamesapce.php ├── PestTestFunctionCallWithParenthesis.php └── PestTestWithPlusAndQuestionMark.php ├── SimpleHigherOrderNotTest.php ├── SimpleHigherOrderTestWithName.php ├── SimpleScript.php ├── TestWithDataset.php ├── annotator ├── DuplicateCustomExpectation.afterDelete.php ├── DuplicateCustomExpectation.afterNavigate.php ├── DuplicateCustomExpectation.php ├── DuplicateTestName.afterDelete.php ├── DuplicateTestName.afterNavigate.php ├── DuplicateTestName.php ├── NoDuplicateCustomExpectation.php ├── NoDuplicateTestName.php └── stub │ └── Functions.php ├── codeInsight └── typeInference │ ├── ThisInInnerClosure.php │ └── ThisInSubproject │ └── Test.php ├── configuration ├── FileWithPestTest.php ├── locationProvider │ ├── SubprojectFor1xVersion │ │ └── subdir │ │ │ └── Test.php │ └── SubprojectFor2xVersion │ │ └── subdir │ │ └── Test.php ├── pest │ ├── tests │ │ ├── DIRFeature │ │ │ └── FeatureTest.php │ │ ├── DynamicFeature │ │ │ └── FeatureTest.php │ │ ├── Feature │ │ │ └── FeatureTest.php │ │ ├── GlobPattern │ │ │ ├── DirectoryTest.php │ │ │ ├── FileTest.php │ │ │ └── FileWithRelativePathTest.php │ │ ├── GroupedFeature │ │ │ └── GroupedFeatureTest.php │ │ ├── Pest.php │ │ └── Unit │ │ │ ├── PestExtendUnitTest.php │ │ │ └── UnitTest.php │ └── tests2 │ │ └── Unit │ │ └── UnitTest.php ├── php └── uses │ ├── DIRFeature │ └── FeatureTest.php │ ├── DynamicFeature │ └── FeatureTest.php │ ├── Feature │ └── FeatureTest.php │ ├── GlobPattern │ ├── DirectoryTest.php │ ├── FileTest.php │ └── FileWithRelativePathTest.php │ ├── GroupedFeature │ └── GroupedFeatureTest.php │ ├── Pest.php │ └── Unit │ ├── UnitTest.php │ └── UsesUnitTest.php ├── coverage ├── ATest.php └── php ├── customExpectations ├── CustomExpectation.php ├── CustomExpectationWithParameter.php ├── CustomThisExpectation.php ├── CustomUserExpectation.php ├── UnfinishedCustomExpectation.php ├── generators │ └── ExpectationGenerator │ │ └── GeneratedWithMethod.php └── subFolder │ └── CustomExpectation.php ├── features ├── configuration │ ├── pest │ │ ├── CompleteFakePestInFolder.php │ │ ├── CompleteInFolder.php │ │ └── Test.php │ └── uses │ │ ├── CompleteFakeInFolder.php │ │ ├── CompleteInFolder.php │ │ └── Test.php ├── datasets │ ├── AutocompleteDatasetTest.php │ ├── DatasetNoArgsTest.php │ ├── DatasetOnNonPestTest.php │ ├── DatasetOnNonPestTestCompletion.php │ ├── DatasetReference.php │ ├── DatasetTest.php │ ├── Datasets.php │ ├── DoubleWithDatasetReference.php │ ├── InvalidDatasetNameCase.after.php │ ├── InvalidDatasetNameCase.php │ ├── InvalidDatasetTest.php │ ├── NotDatasetReference.php │ ├── SharedDatasetReference.php │ └── ValidDatasetNameCase.php ├── mutate │ ├── ATest.php │ └── php └── parallel │ ├── ATest.php │ └── php ├── generateTest ├── testWithNamespace.after.php └── testWithNamespace.php ├── goto ├── PestTestFinder │ ├── App │ │ └── User.php │ └── test │ │ └── App │ │ ├── MockTest.php │ │ └── UserTest.php └── datasetUsages │ ├── DatasetDeclaration.php │ └── DatasetUsage.php ├── higherOrderExpectations ├── .phpstorm.meta.php ├── ExpectMethodAssertionCompletion.php ├── ExpectMethodAssertionCompletionChained.php ├── ExpectMethodAssertionCompletionChainedAssertions.php ├── ExpectMethodCompletion.php ├── ExpectMethodCompletionChained.php ├── ExpectMethodCompletionChainedAssertions.php ├── ExpectPropertyAssertionCompletion.php ├── ExpectPropertyAssertionCompletionChained.php ├── ExpectPropertyAssertionCompletionChainedAssertions.php ├── ExpectPropertyCompletion.php ├── ExpectPropertyCompletionChained.php ├── ExpectPropertyCompletionChainedAssertions.php └── stubs.php ├── indexers └── PestTestIndexTest │ ├── FileWithPestTest.php │ ├── FileWithPestTodosTest.php │ └── FileWithoutPestTest.php ├── inspections ├── ExpectCallsWithOtherStatementsBetween.php ├── InvalidTestNameAndDatasetName.after.php ├── InvalidTestNameAndDatasetName.php ├── InvalidTestNameCase.after.php ├── InvalidTestNameCase.php ├── ManyExpectCall.after.php ├── ManyExpectCall.php ├── MultipleExpectCall.after.php ├── MultipleExpectCall.php ├── MultipleExpectCallsWithOtherStatementsBetween.after.php ├── MultipleExpectCallsWithOtherStatementsBetween.php ├── SingleExpectCall.php ├── ValidHigherOrderTestNameCase.php ├── ValidItTestNameWithoutSpaces.php ├── ValidTestNameCase.php ├── ValidTestNameWhenWrongCasingOnOneWord.php ├── assertionCanBeSimplified │ ├── ToBeWithFalse.after.php │ ├── ToBeWithFalse.php │ ├── ToBeWithNull.after.php │ ├── ToBeWithNull.php │ ├── ToBeWithTrue.after.php │ ├── ToBeWithTrue.php │ ├── ToHaveCountWithZero.after.php │ └── ToHaveCountWithZero.php ├── pestTestFailedLine │ ├── AnonymousFunction.php │ ├── FailedOneLine.php │ ├── LambdaFunction.php │ ├── MismatchLine.php │ ├── MultipleStatementsInOneLine.php │ ├── OutRange.php │ ├── SingleLeafElementReported.php │ ├── TypeBefore.php │ ├── TypeInside.php │ ├── WithDataSet.php │ ├── WithDataSetAndKeys.php │ ├── WithDataSetAndSeveralFails.php │ └── WithNamedDataSet.php ├── phpstorm │ └── MultipleClassesDeclarationsInPestFileTest.php └── screenshotProject │ └── tests │ ├── .pest │ └── snapshots │ │ └── Feature │ │ ├── ScreenshotSnapshot │ │ └── it_browser_testing.snap │ │ ├── ScreenshotSnapshotComplexName │ │ └── it_1__2_3_4_.snap │ │ ├── ScreenshotSnapshotMultiple │ │ ├── it_test.snap │ │ └── it_test2.snap │ │ └── nested │ │ └── ScreenshotSnapshotNested │ │ └── nested.snap │ └── Feature │ ├── MissingScreenshotSnapshot.php │ ├── MissingScreenshotSnapshotComplexName.php │ ├── MissingScreenshotSnapshotMultiple.php │ ├── ScreenshotSnapshot.php │ ├── ScreenshotSnapshotComplexName.php │ ├── ScreenshotSnapshotMultiple.php │ └── nested │ ├── MissingScreenshotSnapshotNested.php │ └── ScreenshotSnapshotNested.php ├── runner └── pestTestStacktraceParser │ ├── Multiline.php │ ├── OneLine.php │ ├── OneLineRemote.php │ ├── OutRangeLineNumber.php │ └── WrongLineNumber.php ├── snapshotTesting ├── allSnapshotAssertions.php ├── nonSnapshotAssertions.php ├── snapshotAssertionUseStatement.php ├── snapshotTest.php └── tests │ └── __snapshots__ │ └── it_my_test.txt ├── stubs.php ├── templates ├── describe.after.php ├── describe.php ├── it.after.php └── it.php ├── types ├── TestCase.php ├── expect │ ├── expectCallCompletion.php │ ├── expectCallCompletionChainedNotMethod.php │ ├── expectCallCompletionChainedNotProperty.php │ ├── expectExtendCallOnNonExpectFunction.php │ ├── expectExtendReturnType.php │ ├── expectInvalidExtendNoReturnType.php │ └── extendCallOnChainedExpectation.php ├── function │ └── testTest.php ├── this │ ├── beforeEach.php │ ├── itShortLambdaTest.php │ ├── itTest.php │ └── testTest.php └── thisField │ ├── afterEach.php │ ├── afterEachNamespace.php │ ├── beforeEach.php │ ├── beforeEachCompletion.php │ ├── beforeEachNamespace.php │ └── beforeEachNamespaceCompletion.php └── utilTests ├── ClassNameResolutionInNamespaceTest.php ├── ClassNameResolutionTest.php └── SimpleTest.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: olivernybroe -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-close.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/.github/workflows/auto-close.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/qodana.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/.github/workflows/qodana.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/run-ui-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/.github/workflows/run-ui-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | build 3 | .idea 4 | .intellijPlatform -------------------------------------------------------------------------------- /.run/Run IDE with Plugin.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/.run/Run IDE with Plugin.run.xml -------------------------------------------------------------------------------- /.run/Run Plugin Tests.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/.run/Run Plugin Tests.run.xml -------------------------------------------------------------------------------- /.run/Run Plugin Verification.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/.run/Run Plugin Verification.run.xml -------------------------------------------------------------------------------- /.run/Run Qodana.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/.run/Run Qodana.run.xml -------------------------------------------------------------------------------- /BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/BUILD.bazel -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/README.md -------------------------------------------------------------------------------- /art/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/art/banner.png -------------------------------------------------------------------------------- /art/icons/config@dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/art/icons/config@dark.svg -------------------------------------------------------------------------------- /art/icons/config@light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/art/icons/config@light.svg -------------------------------------------------------------------------------- /art/icons/dataset@dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/art/icons/dataset@dark.svg -------------------------------------------------------------------------------- /art/icons/dataset@light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/art/icons/dataset@light.svg -------------------------------------------------------------------------------- /art/icons/file@dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/art/icons/file@dark.svg -------------------------------------------------------------------------------- /art/icons/file@light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/art/icons/file@light.svg -------------------------------------------------------------------------------- /art/icons/run@dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/art/icons/run@dark.svg -------------------------------------------------------------------------------- /art/icons/run@light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/art/icons/run@light.svg -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/gradlew.bat -------------------------------------------------------------------------------- /intellij.pest.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/intellij.pest.iml -------------------------------------------------------------------------------- /plugin-content.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/plugin-content.yaml -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /src/main/java/com/pestphp/pest/PestIcons.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/java/com/pestphp/pest/PestIcons.java -------------------------------------------------------------------------------- /src/main/java/com/pestphp/pest/configuration/PestRunConfigurationSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/java/com/pestphp/pest/configuration/PestRunConfigurationSettings.java -------------------------------------------------------------------------------- /src/main/java/com/pestphp/pest/configuration/PhpTestRunConfiguration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/java/com/pestphp/pest/configuration/PhpTestRunConfiguration.java -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/FileUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/FileUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/PestBundle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/PestBundle.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/PestComposerConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/PestComposerConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/PestFrameworkType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/PestFrameworkType.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/PestFunctionsUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/PestFunctionsUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/PestIconProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/PestIconProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/PestNamingUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/PestNamingUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/PestNewTestFromClassAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/PestNewTestFromClassAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/PestSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/PestSettings.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/PestTestCreateInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/PestTestCreateInfo.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/PestTestDescriptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/PestTestDescriptor.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/PestTestFileUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/PestTestFileUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/PestTestRunLineMarkerProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/PestTestRunLineMarkerProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/PestUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/PestUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/annotator/PestAnnotator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/annotator/PestAnnotator.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/annotator/PestAnnotatorVisitor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/annotator/PestAnnotatorVisitor.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/completion/InternalMembersCompletionProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/completion/InternalMembersCompletionProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/completion/PestCompletionContributor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/completion/PestCompletionContributor.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/completion/PestCustomExtensionCompletionProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/completion/PestCustomExtensionCompletionProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/completion/ThisFieldsCompletionProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/completion/ThisFieldsCompletionProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/configuration/PestDebugRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/configuration/PestDebugRunner.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/configuration/PestLocationProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/configuration/PestLocationProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/configuration/PestRerunFailedTestsAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/configuration/PestRerunFailedTestsAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/configuration/PestRerunProfile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/configuration/PestRerunProfile.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/configuration/PestRunConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/configuration/PestRunConfiguration.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/configuration/PestRunConfigurationHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/configuration/PestRunConfigurationHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/configuration/PestRunConfigurationProducer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/configuration/PestRunConfigurationProducer.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/configuration/PestRunConfigurationType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/configuration/PestRunConfigurationType.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/configuration/PestRunnerSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/configuration/PestRunnerSettings.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/configuration/PestTestRunConfigurationEditor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/configuration/PestTestRunConfigurationEditor.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/configuration/PestVersionDetector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/configuration/PestVersionDetector.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/coverage/PestCoverageEnabledConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/coverage/PestCoverageEnabledConfiguration.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/coverage/PestCoverageEngine.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/coverage/PestCoverageEngine.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/coverage/PestCoverageProgramRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/coverage/PestCoverageProgramRunner.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/configuration/ConfigurationInDirectoryReferenceProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/configuration/ConfigurationInDirectoryReferenceProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/configuration/ConfigurationReferenceContributor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/configuration/ConfigurationReferenceContributor.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/configuration/PhpFolderReferenceSet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/configuration/PhpFolderReferenceSet.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/customExpectations/CustomExpectationIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/customExpectations/CustomExpectationIndex.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/customExpectations/CustomExpectationNotifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/customExpectations/CustomExpectationNotifier.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/customExpectations/CustomExpectationParameterInfoHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/customExpectations/CustomExpectationParameterInfoHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/customExpectations/CustomExpectationRemoveGeneratedFileStartupActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/customExpectations/CustomExpectationRemoveGeneratedFileStartupActivity.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/customExpectations/ListMethodDataExternalizer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/customExpectations/ListMethodDataExternalizer.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/customExpectations/MethodDataExternalizer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/customExpectations/MethodDataExternalizer.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/customExpectations/expectationUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/customExpectations/expectationUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/customExpectations/externalizers/ListDataExternalizer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/customExpectations/externalizers/ListDataExternalizer.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/customExpectations/externalizers/MethodDataExternalizer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/customExpectations/externalizers/MethodDataExternalizer.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/customExpectations/externalizers/ParameterDataExternalizer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/customExpectations/externalizers/ParameterDataExternalizer.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/customExpectations/externalizers/PhpTypeDataExternalizer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/customExpectations/externalizers/PhpTypeDataExternalizer.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/customExpectations/generators/ExpectationGenerator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/customExpectations/generators/ExpectationGenerator.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/customExpectations/generators/Method.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/customExpectations/generators/Method.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/customExpectations/generators/Parameter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/customExpectations/generators/Parameter.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/customExpectations/symbols/PestCustomExpectationReference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/customExpectations/symbols/PestCustomExpectationReference.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/customExpectations/symbols/PestCustomExpectationReferenceProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/customExpectations/symbols/PestCustomExpectationReferenceProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/customExpectations/symbols/PestCustomExpectationRenameUsageSearcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/customExpectations/symbols/PestCustomExpectationRenameUsageSearcher.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/customExpectations/symbols/PestCustomExpectationSymbol.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/customExpectations/symbols/PestCustomExpectationSymbol.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/customExpectations/symbols/PestCustomExpectationSymbolDeclaration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/customExpectations/symbols/PestCustomExpectationSymbolDeclaration.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/customExpectations/symbols/PestCustomExpectationSymbolDeclarationProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/customExpectations/symbols/PestCustomExpectationSymbolDeclarationProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/customExpectations/symbols/PestCustomExpectationUsageSearcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/customExpectations/symbols/PestCustomExpectationUsageSearcher.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/datasets/DatasetIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/datasets/DatasetIndex.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/datasets/DatasetReference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/datasets/DatasetReference.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/datasets/DatasetReferenceContributor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/datasets/DatasetReferenceContributor.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/datasets/DatasetReferenceProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/datasets/DatasetReferenceProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/datasets/DatasetUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/datasets/DatasetUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/datasets/InvalidDatasetNameCaseInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/datasets/InvalidDatasetNameCaseInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/datasets/InvalidDatasetReferenceInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/datasets/InvalidDatasetReferenceInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/mutate/PestMutateProgramRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/mutate/PestMutateProgramRunner.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/mutate/PestMutateTestExecutor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/mutate/PestMutateTestExecutor.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/parallel/PestParallelProgramRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/parallel/PestParallelProgramRunner.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/parallel/PestParallelSMTEventsAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/parallel/PestParallelSMTEventsAdapter.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/parallel/PestParallelTestExecutor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/parallel/PestParallelTestExecutor.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/snapshotTesting/SnapshotLineMarkerProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/snapshotTesting/SnapshotLineMarkerProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/features/snapshotTesting/SnapshotUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/features/snapshotTesting/SnapshotUtil.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/goto/PestDatasetUsagesGotoHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/goto/PestDatasetUsagesGotoHandler.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/goto/PestGotoTargetPresentationProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/goto/PestGotoTargetPresentationProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/goto/PestTestFinder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/goto/PestTestFinder.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/goto/PestTestGoToSymbolContributor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/goto/PestTestGoToSymbolContributor.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/indexers/PestTestIndex.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/indexers/PestTestIndex.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/inspections/ChangeMultipleExpectCallsToChainableQuickFix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/inspections/ChangeMultipleExpectCallsToChainableQuickFix.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/inspections/ChangeTestNameCasingQuickFix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/inspections/ChangeTestNameCasingQuickFix.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/inspections/InvalidTestNameCaseInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/inspections/InvalidTestNameCaseInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/inspections/MissingScreenshotSnapshotInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/inspections/MissingScreenshotSnapshotInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/inspections/MultipleExpectChainableInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/inspections/MultipleExpectChainableInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/inspections/PestAssertionCanBeSimplifiedInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/inspections/PestAssertionCanBeSimplifiedInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/inspections/PestTestFailedLineInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/inspections/PestTestFailedLineInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/inspections/SuppressExpressionResultUnusedInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/inspections/SuppressExpressionResultUnusedInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/inspections/SuppressUndefinedPropertyInspection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/inspections/SuppressUndefinedPropertyInspection.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/notifications/OutdatedNotification.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/notifications/OutdatedNotification.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/parser/PestConfigurationFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/parser/PestConfigurationFile.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/parser/PestConfigurationFileParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/parser/PestConfigurationFileParser.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/runner/LocationInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/runner/LocationInfo.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/runner/PestConsoleProperties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/runner/PestConsoleProperties.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/runner/PestFailedLineManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/runner/PestFailedLineManager.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/runner/PestPressToContinueAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/runner/PestPressToContinueAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/runner/PestPromptConsoleFolding.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/runner/PestPromptConsoleFolding.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/runner/PestTestStackTraceParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/runner/PestTestStackTraceParser.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/statistics/PestUsagesCollector.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/statistics/PestUsagesCollector.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/structureView/PestStructureViewElement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/structureView/PestStructureViewElement.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/structureView/PestStructureViewExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/structureView/PestStructureViewExtension.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/surrounders/ExpectStatementSurrounder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/surrounders/ExpectStatementSurrounder.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/surrounders/StatementSurroundDescriptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/surrounders/StatementSurroundDescriptor.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/templates/PestConfigNewDatasetFileAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/templates/PestConfigNewDatasetFileAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/templates/PestConfigNewFileAction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/templates/PestConfigNewFileAction.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/templates/PestDescribePostfixTemplate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/templates/PestDescribePostfixTemplate.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/templates/PestItPostfixTemplate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/templates/PestItPostfixTemplate.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/templates/PestPostfixTemplateProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/templates/PestPostfixTemplateProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/templates/PestRootTemplateContextType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/templates/PestRootTemplateContextType.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/types/HigherOrderExtendTypeProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/types/HigherOrderExtendTypeProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/types/InnerTestTypeProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/types/InnerTestTypeProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/types/ThisExtendTypeProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/types/ThisExtendTypeProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/types/ThisFieldTypeProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/types/ThisFieldTypeProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/pestphp/pest/types/ThisTypeProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/kotlin/com/pestphp/pest/types/ThisTypeProvider.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/pest-coverage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/resources/META-INF/pest-coverage.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/main/resources/META-INF/pluginIcon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/resources/META-INF/pluginIcon.svg -------------------------------------------------------------------------------- /src/main/resources/config.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/resources/config.svg -------------------------------------------------------------------------------- /src/main/resources/config_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/resources/config_dark.svg -------------------------------------------------------------------------------- /src/main/resources/dataset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/resources/dataset.svg -------------------------------------------------------------------------------- /src/main/resources/dataset_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/resources/dataset_dark.svg -------------------------------------------------------------------------------- /src/main/resources/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/main/resources/file.svg -------------------------------------------------------------------------------- /src/main/resources/fileTemplates/internal/Pest It.php.ft: -------------------------------------------------------------------------------- 1 | it(); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/PestUtil/MethodCallNamedItAndVariableTest.php: -------------------------------------------------------------------------------- 1 | it(); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/PestUtil/MethodCallNamedTest.php: -------------------------------------------------------------------------------- 1 | test(); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/PestUtil/NestedDescribeFunctionCalls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/PestUtil/NestedDescribeFunctionCalls.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/PestUtil/PestArchFunctionCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/PestUtil/PestArchFunctionCall.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/PestUtil/PestDescribeBlock.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/PestUtil/PestTestFunctionCallWithCircumflex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/PestUtil/PestTestFunctionCallWithCircumflex.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/PestUtil/PestTestFunctionCallWithConcatString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/PestUtil/PestTestFunctionCallWithConcatString.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/PestUtil/PestTestFunctionCallWithDescriptionAndClosure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/PestUtil/PestTestFunctionCallWithDescriptionAndClosure.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/PestUtil/PestTestFunctionCallWithDescriptionAndHigherOrder.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/PestUtil/PestTestFunctionCallWithNamesapce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/PestUtil/PestTestFunctionCallWithNamesapce.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/PestUtil/PestTestFunctionCallWithParenthesis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/PestUtil/PestTestFunctionCallWithParenthesis.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/PestUtil/PestTestWithPlusAndQuestionMark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/PestUtil/PestTestWithPlusAndQuestionMark.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/SimpleHigherOrderNotTest.php: -------------------------------------------------------------------------------- 1 | not->assertTrue(true); 4 | -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/SimpleHigherOrderTestWithName.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 4 | -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/SimpleScript.php: -------------------------------------------------------------------------------- 1 | extend('toBeOne', function (): bool { 4 | return false; 5 | }); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/annotator/DuplicateCustomExpectation.afterNavigate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/annotator/DuplicateCustomExpectation.afterNavigate.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/annotator/DuplicateCustomExpectation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/annotator/DuplicateCustomExpectation.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/annotator/DuplicateTestName.afterDelete.php: -------------------------------------------------------------------------------- 1 | assertTrue(false); 5 | }); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/annotator/DuplicateTestName.afterNavigate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/annotator/DuplicateTestName.afterNavigate.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/annotator/DuplicateTestName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/annotator/DuplicateTestName.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/annotator/NoDuplicateCustomExpectation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/annotator/NoDuplicateCustomExpectation.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/annotator/NoDuplicateTestName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/annotator/NoDuplicateTestName.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/annotator/stub/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/annotator/stub/Functions.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/codeInsight/typeInference/ThisInInnerClosure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/codeInsight/typeInference/ThisInInnerClosure.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/codeInsight/typeInference/ThisInSubproject/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/codeInsight/typeInference/ThisInSubproject/Test.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/FileWithPestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/configuration/FileWithPestTest.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/locationProvider/SubprojectFor1xVersion/subdir/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/configuration/locationProvider/SubprojectFor1xVersion/subdir/Test.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/locationProvider/SubprojectFor2xVersion/subdir/Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/configuration/locationProvider/SubprojectFor2xVersion/subdir/Test.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/pest/tests/DIRFeature/FeatureTest.php: -------------------------------------------------------------------------------- 1 | 5 | }); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/pest/tests/DynamicFeature/FeatureTest.php: -------------------------------------------------------------------------------- 1 | 5 | }); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/pest/tests/Feature/FeatureTest.php: -------------------------------------------------------------------------------- 1 | 5 | }); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/pest/tests/GlobPattern/DirectoryTest.php: -------------------------------------------------------------------------------- 1 | 5 | }); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/pest/tests/GlobPattern/FileTest.php: -------------------------------------------------------------------------------- 1 | 5 | }); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/pest/tests/GlobPattern/FileWithRelativePathTest.php: -------------------------------------------------------------------------------- 1 | 5 | }); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/pest/tests/GroupedFeature/GroupedFeatureTest.php: -------------------------------------------------------------------------------- 1 | 5 | }); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/pest/tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/configuration/pest/tests/Pest.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/pest/tests/Unit/PestExtendUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/configuration/pest/tests/Unit/PestExtendUnitTest.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/pest/tests/Unit/UnitTest.php: -------------------------------------------------------------------------------- 1 | 5 | }); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/pest/tests2/Unit/UnitTest.php: -------------------------------------------------------------------------------- 1 | 5 | }); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/uses/DIRFeature/FeatureTest.php: -------------------------------------------------------------------------------- 1 | 5 | }); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/uses/DynamicFeature/FeatureTest.php: -------------------------------------------------------------------------------- 1 | 5 | }); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/uses/Feature/FeatureTest.php: -------------------------------------------------------------------------------- 1 | 5 | }); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/uses/GlobPattern/DirectoryTest.php: -------------------------------------------------------------------------------- 1 | 5 | }); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/uses/GlobPattern/FileTest.php: -------------------------------------------------------------------------------- 1 | 5 | }); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/uses/GlobPattern/FileWithRelativePathTest.php: -------------------------------------------------------------------------------- 1 | 5 | }); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/uses/GroupedFeature/GroupedFeatureTest.php: -------------------------------------------------------------------------------- 1 | 5 | }); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/uses/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/configuration/uses/Pest.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/uses/Unit/UnitTest.php: -------------------------------------------------------------------------------- 1 | 5 | }); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/configuration/uses/Unit/UsesUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/configuration/uses/Unit/UsesUnitTest.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/coverage/ATest.php: -------------------------------------------------------------------------------- 1 | extend('toBeOne', function (): bool { 4 | return true; 5 | }); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/customExpectations/CustomExpectationWithParameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/customExpectations/CustomExpectationWithParameter.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/customExpectations/CustomThisExpectation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/customExpectations/CustomThisExpectation.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/customExpectations/CustomUserExpectation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/customExpectations/CustomUserExpectation.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/customExpectations/UnfinishedCustomExpectation.php: -------------------------------------------------------------------------------- 1 | extend('toBeOne'); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/customExpectations/generators/ExpectationGenerator/GeneratedWithMethod.php: -------------------------------------------------------------------------------- 1 | toBe(42); 4 | -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/ValidHigherOrderTestNameCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/ValidHigherOrderTestNameCase.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/ValidItTestNameWithoutSpaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/ValidItTestNameWithoutSpaces.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/ValidTestNameCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/ValidTestNameCase.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/ValidTestNameWhenWrongCasingOnOneWord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/ValidTestNameWhenWrongCasingOnOneWord.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/assertionCanBeSimplified/ToBeWithFalse.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/assertionCanBeSimplified/ToBeWithFalse.after.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/assertionCanBeSimplified/ToBeWithFalse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/assertionCanBeSimplified/ToBeWithFalse.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/assertionCanBeSimplified/ToBeWithNull.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/assertionCanBeSimplified/ToBeWithNull.after.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/assertionCanBeSimplified/ToBeWithNull.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/assertionCanBeSimplified/ToBeWithNull.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/assertionCanBeSimplified/ToBeWithTrue.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/assertionCanBeSimplified/ToBeWithTrue.after.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/assertionCanBeSimplified/ToBeWithTrue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/assertionCanBeSimplified/ToBeWithTrue.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/assertionCanBeSimplified/ToHaveCountWithZero.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/assertionCanBeSimplified/ToHaveCountWithZero.after.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/assertionCanBeSimplified/ToHaveCountWithZero.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/assertionCanBeSimplified/ToHaveCountWithZero.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/AnonymousFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/AnonymousFunction.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/FailedOneLine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/FailedOneLine.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/LambdaFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/LambdaFunction.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/MismatchLine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/MismatchLine.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/MultipleStatementsInOneLine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/MultipleStatementsInOneLine.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/OutRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/OutRange.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/SingleLeafElementReported.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/SingleLeafElementReported.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/TypeBefore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/TypeBefore.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/TypeInside.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/TypeInside.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/WithDataSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/WithDataSet.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/WithDataSetAndKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/WithDataSetAndKeys.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/WithDataSetAndSeveralFails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/WithDataSetAndSeveralFails.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/WithNamedDataSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/pestTestFailedLine/WithNamedDataSet.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/phpstorm/MultipleClassesDeclarationsInPestFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/phpstorm/MultipleClassesDeclarationsInPestFileTest.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/screenshotProject/tests/.pest/snapshots/Feature/ScreenshotSnapshot/it_browser_testing.snap: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/screenshotProject/tests/.pest/snapshots/Feature/ScreenshotSnapshotComplexName/it_1__2_3_4_.snap: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/screenshotProject/tests/.pest/snapshots/Feature/ScreenshotSnapshotMultiple/it_test.snap: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/screenshotProject/tests/.pest/snapshots/Feature/ScreenshotSnapshotMultiple/it_test2.snap: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/screenshotProject/tests/.pest/snapshots/Feature/nested/ScreenshotSnapshotNested/nested.snap: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/screenshotProject/tests/Feature/MissingScreenshotSnapshot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/screenshotProject/tests/Feature/MissingScreenshotSnapshot.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/screenshotProject/tests/Feature/MissingScreenshotSnapshotComplexName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/screenshotProject/tests/Feature/MissingScreenshotSnapshotComplexName.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/screenshotProject/tests/Feature/MissingScreenshotSnapshotMultiple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/screenshotProject/tests/Feature/MissingScreenshotSnapshotMultiple.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/screenshotProject/tests/Feature/ScreenshotSnapshot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/screenshotProject/tests/Feature/ScreenshotSnapshot.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/screenshotProject/tests/Feature/ScreenshotSnapshotComplexName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/screenshotProject/tests/Feature/ScreenshotSnapshotComplexName.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/screenshotProject/tests/Feature/ScreenshotSnapshotMultiple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/screenshotProject/tests/Feature/ScreenshotSnapshotMultiple.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/screenshotProject/tests/Feature/nested/MissingScreenshotSnapshotNested.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/screenshotProject/tests/Feature/nested/MissingScreenshotSnapshotNested.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/inspections/screenshotProject/tests/Feature/nested/ScreenshotSnapshotNested.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/inspections/screenshotProject/tests/Feature/nested/ScreenshotSnapshotNested.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/runner/pestTestStacktraceParser/Multiline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/runner/pestTestStacktraceParser/Multiline.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/runner/pestTestStacktraceParser/OneLine.php: -------------------------------------------------------------------------------- 1 | toBe(2); 5 | }); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/runner/pestTestStacktraceParser/OneLineRemote.php: -------------------------------------------------------------------------------- 1 | toBe(2); 5 | }); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/runner/pestTestStacktraceParser/OutRangeLineNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/runner/pestTestStacktraceParser/OutRangeLineNumber.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/runner/pestTestStacktraceParser/WrongLineNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/runner/pestTestStacktraceParser/WrongLineNumber.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/snapshotTesting/allSnapshotAssertions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/snapshotTesting/allSnapshotAssertions.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/snapshotTesting/nonSnapshotAssertions.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/templates/it.after.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/templates/it.after.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/templates/it.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/types/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/types/TestCase.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/types/expect/expectCallCompletion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/types/expect/expectCallCompletion.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/types/expect/expectCallCompletionChainedNotMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/types/expect/expectCallCompletionChainedNotMethod.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/types/expect/expectCallCompletionChainedNotProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/types/expect/expectCallCompletionChainedNotProperty.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/types/expect/expectExtendCallOnNonExpectFunction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/types/expect/expectExtendCallOnNonExpectFunction.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/types/expect/expectExtendReturnType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/types/expect/expectExtendReturnType.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/types/expect/expectInvalidExtendNoReturnType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/types/expect/expectInvalidExtendNoReturnType.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/types/expect/extendCallOnChainedExpectation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/types/expect/extendCallOnChainedExpectation.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/types/function/testTest.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/types/this/beforeEach.php: -------------------------------------------------------------------------------- 1 | 5 | }); -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/types/this/itShortLambdaTest.php: -------------------------------------------------------------------------------- 1 | $this-> ); 4 | -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/types/this/itTest.php: -------------------------------------------------------------------------------- 1 | 5 | }); 6 | -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/types/this/testTest.php: -------------------------------------------------------------------------------- 1 | 5 | }); 6 | -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/types/thisField/afterEach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/types/thisField/afterEach.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/types/thisField/afterEachNamespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/types/thisField/afterEachNamespace.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/types/thisField/beforeEach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/types/thisField/beforeEach.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/types/thisField/beforeEachCompletion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/types/thisField/beforeEachCompletion.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/types/thisField/beforeEachNamespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/types/thisField/beforeEachNamespace.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/types/thisField/beforeEachNamespaceCompletion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/types/thisField/beforeEachNamespaceCompletion.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/utilTests/ClassNameResolutionInNamespaceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/utilTests/ClassNameResolutionInNamespaceTest.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/utilTests/ClassNameResolutionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/utilTests/ClassNameResolutionTest.php -------------------------------------------------------------------------------- /src/test/resources/com/pestphp/pest/utilTests/SimpleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/pest-intellij/HEAD/src/test/resources/com/pestphp/pest/utilTests/SimpleTest.php --------------------------------------------------------------------------------