Skip to content

Commit c0ce5ca

Browse files
localheinzsebastianbergmann
authored andcommitted
Fix: Import
1 parent 5ef643f commit c0ce5ca

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

tests/unit/Util/TestClassTest.php

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
use RequirementsClassDocBlockTest;
2929
use RequirementsTest;
3030
use Test3194;
31+
use VariousDocblockDefinedDataProvider;
3132
use VariousIterableDataProviderTest;
3233

3334
/**
@@ -1024,7 +1025,7 @@ public function testWithDuplicateKeyDataProviders(): void
10241025
public function testTestWithEmptyAnnotation(): void
10251026
{
10261027
$result = DocBlock::ofMethod(new ReflectionMethod(
1027-
\VariousDocblockDefinedDataProvider::class,
1028+
VariousDocblockDefinedDataProvider::class,
10281029
'anotherAnnotation'
10291030
), VariousDocblockDefinedDataProvider::class)->getProvidedData();
10301031

@@ -1034,7 +1035,7 @@ public function testTestWithEmptyAnnotation(): void
10341035
public function testTestWithSimpleCase(): void
10351036
{
10361037
$result = DocBlock::ofMethod(new ReflectionMethod(
1037-
\VariousDocblockDefinedDataProvider::class,
1038+
VariousDocblockDefinedDataProvider::class,
10381039
'testWith1'
10391040
), VariousDocblockDefinedDataProvider::class)->getProvidedData();
10401041

@@ -1044,7 +1045,7 @@ public function testTestWithSimpleCase(): void
10441045
public function testTestWithMultiLineMultiParameterCase(): void
10451046
{
10461047
$result = DocBlock::ofMethod(new ReflectionMethod(
1047-
\VariousDocblockDefinedDataProvider::class,
1048+
VariousDocblockDefinedDataProvider::class,
10481049
'testWith1234'
10491050
), VariousDocblockDefinedDataProvider::class)->getProvidedData();
10501051

@@ -1054,7 +1055,7 @@ public function testTestWithMultiLineMultiParameterCase(): void
10541055
public function testTestWithVariousTypes(): void
10551056
{
10561057
$result = DocBlock::ofMethod(new ReflectionMethod(
1057-
\VariousDocblockDefinedDataProvider::class,
1058+
VariousDocblockDefinedDataProvider::class,
10581059
'testWithABTrueNull'
10591060
), VariousDocblockDefinedDataProvider::class)->getProvidedData();
10601061

@@ -1064,7 +1065,7 @@ public function testTestWithVariousTypes(): void
10641065
public function testTestWithAnnotationAfter(): void
10651066
{
10661067
$result = DocBlock::ofMethod(new ReflectionMethod(
1067-
\VariousDocblockDefinedDataProvider::class,
1068+
VariousDocblockDefinedDataProvider::class,
10681069
'testWith12AndAnotherAnnotation'
10691070
), VariousDocblockDefinedDataProvider::class)->getProvidedData();
10701071

@@ -1074,7 +1075,7 @@ public function testTestWithAnnotationAfter(): void
10741075
public function testTestWithSimpleTextAfter(): void
10751076
{
10761077
$result = DocBlock::ofMethod(new ReflectionMethod(
1077-
\VariousDocblockDefinedDataProvider::class,
1078+
VariousDocblockDefinedDataProvider::class,
10781079
'testWith12AndBlahBlah'
10791080
), VariousDocblockDefinedDataProvider::class)->getProvidedData();
10801081

@@ -1084,7 +1085,7 @@ public function testTestWithSimpleTextAfter(): void
10841085
public function testTestWithCharacterEscape(): void
10851086
{
10861087
$result = DocBlock::ofMethod(new ReflectionMethod(
1087-
\VariousDocblockDefinedDataProvider::class,
1088+
VariousDocblockDefinedDataProvider::class,
10881089
'testWithEscapedString'
10891090
), VariousDocblockDefinedDataProvider::class)->getProvidedData();
10901091

@@ -1094,7 +1095,7 @@ public function testTestWithCharacterEscape(): void
10941095
public function testTestWithThrowsProperExceptionIfDatasetCannotBeParsed(): void
10951096
{
10961097
$docBlock = DocBlock::ofMethod(new ReflectionMethod(
1097-
\VariousDocblockDefinedDataProvider::class,
1098+
VariousDocblockDefinedDataProvider::class,
10981099
'testWithMalformedValue'
10991100
), VariousDocblockDefinedDataProvider::class);
11001101

@@ -1107,7 +1108,7 @@ public function testTestWithThrowsProperExceptionIfDatasetCannotBeParsed(): void
11071108
public function testTestWithThrowsProperExceptionIfMultiLineDatasetCannotBeParsed(): void
11081109
{
11091110
$docBlock = DocBlock::ofMethod(new ReflectionMethod(
1110-
\VariousDocblockDefinedDataProvider::class,
1111+
VariousDocblockDefinedDataProvider::class,
11111112
'testWithWellFormedAndMalformedValue'
11121113
), VariousDocblockDefinedDataProvider::class);
11131114

0 commit comments

Comments
 (0)