Completed
Pull Request — master (#485)
by Maximilian
04:14
created

TreeBrowserTest::setUp()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 5
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
3
namespace Sonata\DoctrinePHPCRAdminBundle\Tests\WebTest\Dashboard;
4
5
use Symfony\Cmf\Component\Testing\Functional\BaseTestCase;
6
7
/**
8
 * @author Maximilian Berghoff <[email protected]>
9
 */
10
class TreeBrowserTest extends BaseTestCase
11
{
12
    public function setUp()
13
    {
14
        $this->db('PHPCR')->loadFixtures(array('Sonata\DoctrinePHPCRAdminBundle\Tests\Resources\DataFixtures\Phpcr\LoadDashboardTreeData'));
15
        $this->client = $this->createClient();
16
    }
17
18
    public function testTreeOnDashboardLoadsWithNoErrors()
19
    {
20
21
        $crawler = $this->client->request('GET', '/admin/dashboard');
22
        $res = $this->client->getResponse();
23
24
        $this->assertResponseSuccess($res);
25
26
        $this->assertCount(1, $crawler->filter('div#tree'));
27
    }
28
}
29