We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4907ca commit 4df1fe1Copy full SHA for 4df1fe1
best_practices/tests.rst
@@ -38,7 +38,9 @@ A functional test can be as easy as this:
38
39
class ApplicationAvailabilityFunctionalTest extends WebTestCase
40
{
41
- /** @dataProvider provideUrls */
+ /**
42
+ * @dataProvider urlProvider
43
+ */
44
public function testPageIsSuccessful($url)
45
46
$client = self::createClient();
@@ -47,7 +49,7 @@ A functional test can be as easy as this:
47
49
$this->assertTrue($client->getResponse()->isSuccessful());
48
50
}
51
- public function provideUrls()
52
+ public function urlProvider()
53
54
return array(
55
array('/'),
0 commit comments