28
28
use RequirementsClassDocBlockTest ;
29
29
use RequirementsTest ;
30
30
use Test3194 ;
31
+ use VariousDocblockDefinedDataProvider ;
31
32
use VariousIterableDataProviderTest ;
32
33
33
34
/**
@@ -1024,7 +1025,7 @@ public function testWithDuplicateKeyDataProviders(): void
1024
1025
public function testTestWithEmptyAnnotation (): void
1025
1026
{
1026
1027
$ result = DocBlock::ofMethod (new ReflectionMethod (
1027
- \ VariousDocblockDefinedDataProvider::class,
1028
+ VariousDocblockDefinedDataProvider::class,
1028
1029
'anotherAnnotation '
1029
1030
), VariousDocblockDefinedDataProvider::class)->getProvidedData ();
1030
1031
@@ -1034,7 +1035,7 @@ public function testTestWithEmptyAnnotation(): void
1034
1035
public function testTestWithSimpleCase (): void
1035
1036
{
1036
1037
$ result = DocBlock::ofMethod (new ReflectionMethod (
1037
- \ VariousDocblockDefinedDataProvider::class,
1038
+ VariousDocblockDefinedDataProvider::class,
1038
1039
'testWith1 '
1039
1040
), VariousDocblockDefinedDataProvider::class)->getProvidedData ();
1040
1041
@@ -1044,7 +1045,7 @@ public function testTestWithSimpleCase(): void
1044
1045
public function testTestWithMultiLineMultiParameterCase (): void
1045
1046
{
1046
1047
$ result = DocBlock::ofMethod (new ReflectionMethod (
1047
- \ VariousDocblockDefinedDataProvider::class,
1048
+ VariousDocblockDefinedDataProvider::class,
1048
1049
'testWith1234 '
1049
1050
), VariousDocblockDefinedDataProvider::class)->getProvidedData ();
1050
1051
@@ -1054,7 +1055,7 @@ public function testTestWithMultiLineMultiParameterCase(): void
1054
1055
public function testTestWithVariousTypes (): void
1055
1056
{
1056
1057
$ result = DocBlock::ofMethod (new ReflectionMethod (
1057
- \ VariousDocblockDefinedDataProvider::class,
1058
+ VariousDocblockDefinedDataProvider::class,
1058
1059
'testWithABTrueNull '
1059
1060
), VariousDocblockDefinedDataProvider::class)->getProvidedData ();
1060
1061
@@ -1064,7 +1065,7 @@ public function testTestWithVariousTypes(): void
1064
1065
public function testTestWithAnnotationAfter (): void
1065
1066
{
1066
1067
$ result = DocBlock::ofMethod (new ReflectionMethod (
1067
- \ VariousDocblockDefinedDataProvider::class,
1068
+ VariousDocblockDefinedDataProvider::class,
1068
1069
'testWith12AndAnotherAnnotation '
1069
1070
), VariousDocblockDefinedDataProvider::class)->getProvidedData ();
1070
1071
@@ -1074,7 +1075,7 @@ public function testTestWithAnnotationAfter(): void
1074
1075
public function testTestWithSimpleTextAfter (): void
1075
1076
{
1076
1077
$ result = DocBlock::ofMethod (new ReflectionMethod (
1077
- \ VariousDocblockDefinedDataProvider::class,
1078
+ VariousDocblockDefinedDataProvider::class,
1078
1079
'testWith12AndBlahBlah '
1079
1080
), VariousDocblockDefinedDataProvider::class)->getProvidedData ();
1080
1081
@@ -1084,7 +1085,7 @@ public function testTestWithSimpleTextAfter(): void
1084
1085
public function testTestWithCharacterEscape (): void
1085
1086
{
1086
1087
$ result = DocBlock::ofMethod (new ReflectionMethod (
1087
- \ VariousDocblockDefinedDataProvider::class,
1088
+ VariousDocblockDefinedDataProvider::class,
1088
1089
'testWithEscapedString '
1089
1090
), VariousDocblockDefinedDataProvider::class)->getProvidedData ();
1090
1091
@@ -1094,7 +1095,7 @@ public function testTestWithCharacterEscape(): void
1094
1095
public function testTestWithThrowsProperExceptionIfDatasetCannotBeParsed (): void
1095
1096
{
1096
1097
$ docBlock = DocBlock::ofMethod (new ReflectionMethod (
1097
- \ VariousDocblockDefinedDataProvider::class,
1098
+ VariousDocblockDefinedDataProvider::class,
1098
1099
'testWithMalformedValue '
1099
1100
), VariousDocblockDefinedDataProvider::class);
1100
1101
@@ -1107,7 +1108,7 @@ public function testTestWithThrowsProperExceptionIfDatasetCannotBeParsed(): void
1107
1108
public function testTestWithThrowsProperExceptionIfMultiLineDatasetCannotBeParsed (): void
1108
1109
{
1109
1110
$ docBlock = DocBlock::ofMethod (new ReflectionMethod (
1110
- \ VariousDocblockDefinedDataProvider::class,
1111
+ VariousDocblockDefinedDataProvider::class,
1111
1112
'testWithWellFormedAndMalformedValue '
1112
1113
), VariousDocblockDefinedDataProvider::class);
1113
1114
0 commit comments