The method assertNotSame() does not seem to exist on object<ProxyManagerTest\...dentifierGeneratorTest>.
This check looks for calls to methods that do not seem to exist on a given type.
It looks for the method on the type itself as well as in inherited classes or
implemented interfaces.
This is most likely a typographical error or the method has been renamed.
Loading history...
25
UniqueIdentifierGenerator::getIdentifier($name),
26
UniqueIdentifierGenerator::getIdentifier($name)
27
);
28
}
29
30
/**
31
* @dataProvider getBaseIdentifierNames
32
*/
33
public function testGeneratesValidIdentifiers(string $name) : void
The method assertRegExp() does not seem to exist on object<ProxyManagerTest\...dentifierGeneratorTest>.
This check looks for calls to methods that do not seem to exist on a given type.
It looks for the method on the type itself as well as in inherited classes or
implemented interfaces.
This is most likely a typographical error or the method has been renamed.
Loading history...
36
'/^[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]+$/',
37
UniqueIdentifierGenerator::getIdentifier($name)
38
);
39
}
40
41
/**
42
* @dataProvider getBaseIdentifierNames
43
*/
44
public function testGeneratedIdentifierEntropy(string $name) : void
The method assertGreaterThan() does not seem to exist on object<ProxyManagerTest\...dentifierGeneratorTest>.
This check looks for calls to methods that do not seem to exist on a given type.
It looks for the method on the type itself as well as in inherited classes or
implemented interfaces.
This is most likely a typographical error or the method has been renamed.
Loading history...
47
}
48
49
/**
50
* Data provider generating identifier names to be checked
51
*
52
* @return string[][]
53
*/
54
public static function getBaseIdentifierNames() : array
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.