aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/CoreBundle/CoreKernelTestCase.php
blob: d14421f13ead1035d42e550c651894fd8fa3d8bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

namespace tests\Wallabag\CoreBundle;

use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;

abstract class CoreKernelTestCase extends KernelTestCase
{
    protected $fetchingErrorMessage;

    public function setUp()
    {
        self::bootKernel();
        $container = self::$kernel->getContainer();
        $this->fetchingErrorMessage = $container->getParameter('wallabag_core.fetching_error_message');
    }
}