|
1 | 1 | <?php |
2 | 2 |
|
3 | | -namespace AlexisLefebvre\Bundle\AsyncTweetsBundle\Tests\Controller; |
| 3 | +namespace Acme\Controller; |
4 | 4 |
|
5 | 5 | use Liip\FunctionalTestBundle\Test\WebTestCase; |
| 6 | +use Symfony\Component\BrowserKit\Client; |
6 | 7 |
|
7 | 8 | class DefaultControllerTest extends WebTestCase |
8 | 9 | { |
@@ -35,7 +36,7 @@ public function testNoTweets() |
35 | 36 | public function testTweets($path = null) |
36 | 37 | { |
37 | 38 | $this->loadFixtures([ |
38 | | - 'AlexisLefebvre\Bundle\AsyncTweetsBundle\Tests\DataFixtures\ORM\LoadTweetData', |
| 39 | + 'Acme\DataFixtures\ORM\LoadTweetData', |
39 | 40 | ]); |
40 | 41 |
|
41 | 42 | if (is_null($path)) { |
@@ -142,7 +143,7 @@ public function testSinceTweetId() |
142 | 143 | public function testTweetsPages() |
143 | 144 | { |
144 | 145 | $this->loadFixtures([ |
145 | | - 'AlexisLefebvre\Bundle\AsyncTweetsBundle\Tests\DataFixtures\ORM\LoadTweetPagesData', |
| 146 | + 'Acme\DataFixtures\ORM\LoadTweetPagesData', |
146 | 147 | ]); |
147 | 148 |
|
148 | 149 | $path = '/sinceId/15'; |
@@ -292,7 +293,7 @@ public function testTweetsPages() |
292 | 293 | public function testCookie() |
293 | 294 | { |
294 | 295 | $this->loadFixtures([ |
295 | | - 'AlexisLefebvre\Bundle\AsyncTweetsBundle\Tests\DataFixtures\ORM\LoadTweetData', |
| 296 | + 'Acme\DataFixtures\ORM\LoadTweetData', |
296 | 297 | ]); |
297 | 298 |
|
298 | 299 | $tweetId = 49664; |
@@ -372,7 +373,7 @@ public function testCookie() |
372 | 373 | public function testDeleteTweets() |
373 | 374 | { |
374 | 375 | $this->loadFixtures([ |
375 | | - 'AlexisLefebvre\Bundle\AsyncTweetsBundle\Tests\DataFixtures\ORM\LoadTweetPagesData', |
| 376 | + 'Acme\DataFixtures\ORM\LoadTweetPagesData', |
376 | 377 | ]); |
377 | 378 |
|
378 | 379 | $path = '/sinceId/15'; |
@@ -591,7 +592,7 @@ public function testDeleteTweets() |
591 | 592 | public function testHideRetweetedTweets() |
592 | 593 | { |
593 | 594 | $this->loadFixtures([ |
594 | | - 'AlexisLefebvre\Bundle\AsyncTweetsBundle\Tests\DataFixtures\ORM\LoadTweetAndRetweetData', |
| 595 | + 'Acme\DataFixtures\ORM\LoadTweetAndRetweetData', |
595 | 596 | ]); |
596 | 597 |
|
597 | 598 | ////////// Homepage ////////// |
|
0 commit comments