1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-01 17:38:38 +00:00

Merge pull request #7292 from yguedidi/rename-wallabagcoretestcase-to-wallabagtestcase

Rename WallabagCoreTestCase to WallabagTestCase
This commit is contained in:
Yassine Guedidi 2024-02-25 16:33:26 +01:00 committed by GitHub
commit ce391a6801
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
40 changed files with 79 additions and 79 deletions

View file

@ -6,10 +6,10 @@ use Craue\ConfigBundle\Util\Config;
use Doctrine\ORM\EntityManagerInterface;
use Predis\Client;
use Symfony\Component\HttpFoundation\File\UploadedFile;
use Tests\Wallabag\WallabagCoreTestCase;
use Tests\Wallabag\WallabagTestCase;
use Wallabag\Entity\Entry;
class ChromeControllerTest extends WallabagCoreTestCase
class ChromeControllerTest extends WallabagTestCase
{
public function testImportChrome()
{

View file

@ -6,10 +6,10 @@ use Craue\ConfigBundle\Util\Config;
use Doctrine\ORM\EntityManagerInterface;
use Predis\Client;
use Symfony\Component\HttpFoundation\File\UploadedFile;
use Tests\Wallabag\WallabagCoreTestCase;
use Tests\Wallabag\WallabagTestCase;
use Wallabag\Entity\Entry;
class DeliciousControllerTest extends WallabagCoreTestCase
class DeliciousControllerTest extends WallabagTestCase
{
public function testImportDelicious()
{

View file

@ -6,10 +6,10 @@ use Craue\ConfigBundle\Util\Config;
use Doctrine\ORM\EntityManagerInterface;
use Predis\Client;
use Symfony\Component\HttpFoundation\File\UploadedFile;
use Tests\Wallabag\WallabagCoreTestCase;
use Tests\Wallabag\WallabagTestCase;
use Wallabag\Entity\Entry;
class ElcuratorControllerTest extends WallabagCoreTestCase
class ElcuratorControllerTest extends WallabagTestCase
{
public function testImportElcurator()
{

View file

@ -6,10 +6,10 @@ use Craue\ConfigBundle\Util\Config;
use Doctrine\ORM\EntityManagerInterface;
use Predis\Client;
use Symfony\Component\HttpFoundation\File\UploadedFile;
use Tests\Wallabag\WallabagCoreTestCase;
use Tests\Wallabag\WallabagTestCase;
use Wallabag\Entity\Entry;
class FirefoxControllerTest extends WallabagCoreTestCase
class FirefoxControllerTest extends WallabagTestCase
{
public function testImportFirefox()
{

View file

@ -2,9 +2,9 @@
namespace Tests\Wallabag\Controller\Import;
use Tests\Wallabag\WallabagCoreTestCase;
use Tests\Wallabag\WallabagTestCase;
class ImportControllerTest extends WallabagCoreTestCase
class ImportControllerTest extends WallabagTestCase
{
public function testLogin()
{

View file

@ -6,10 +6,10 @@ use Craue\ConfigBundle\Util\Config;
use Doctrine\ORM\EntityManagerInterface;
use Predis\Client;
use Symfony\Component\HttpFoundation\File\UploadedFile;
use Tests\Wallabag\WallabagCoreTestCase;
use Tests\Wallabag\WallabagTestCase;
use Wallabag\Entity\Entry;
class InstapaperControllerTest extends WallabagCoreTestCase
class InstapaperControllerTest extends WallabagTestCase
{
public function testImportInstapaper()
{

View file

@ -6,10 +6,10 @@ use Craue\ConfigBundle\Util\Config;
use Doctrine\ORM\EntityManagerInterface;
use Predis\Client;
use Symfony\Component\HttpFoundation\File\UploadedFile;
use Tests\Wallabag\WallabagCoreTestCase;
use Tests\Wallabag\WallabagTestCase;
use Wallabag\Entity\Entry;
class PinboardControllerTest extends WallabagCoreTestCase
class PinboardControllerTest extends WallabagTestCase
{
public function testImportPinboard()
{

View file

@ -4,10 +4,10 @@ namespace Tests\Wallabag\Controller\Import;
use Craue\ConfigBundle\Util\Config;
use Symfony\Component\HttpFoundation\Session\SessionInterface;
use Tests\Wallabag\WallabagCoreTestCase;
use Tests\Wallabag\WallabagTestCase;
use Wallabag\Import\PocketImport;
class PocketControllerTest extends WallabagCoreTestCase
class PocketControllerTest extends WallabagTestCase
{
public function testImportPocket()
{

View file

@ -6,10 +6,10 @@ use Craue\ConfigBundle\Util\Config;
use Doctrine\ORM\EntityManagerInterface;
use Predis\Client;
use Symfony\Component\HttpFoundation\File\UploadedFile;
use Tests\Wallabag\WallabagCoreTestCase;
use Tests\Wallabag\WallabagTestCase;
use Wallabag\Entity\Entry;
class PocketHtmlControllerTest extends WallabagCoreTestCase
class PocketHtmlControllerTest extends WallabagTestCase
{
public function testImportPocketHtml()
{

View file

@ -6,10 +6,10 @@ use Craue\ConfigBundle\Util\Config;
use Doctrine\ORM\EntityManagerInterface;
use Predis\Client;
use Symfony\Component\HttpFoundation\File\UploadedFile;
use Tests\Wallabag\WallabagCoreTestCase;
use Tests\Wallabag\WallabagTestCase;
use Wallabag\Entity\Entry;
class ReadabilityControllerTest extends WallabagCoreTestCase
class ReadabilityControllerTest extends WallabagTestCase
{
public function testImportReadability()
{

View file

@ -6,10 +6,10 @@ use Craue\ConfigBundle\Util\Config;
use Doctrine\ORM\EntityManagerInterface;
use Predis\Client;
use Symfony\Component\HttpFoundation\File\UploadedFile;
use Tests\Wallabag\WallabagCoreTestCase;
use Tests\Wallabag\WallabagTestCase;
use Wallabag\Entity\Entry;
class ShaarliControllerTest extends WallabagCoreTestCase
class ShaarliControllerTest extends WallabagTestCase
{
public function testImportShaarli()
{

View file

@ -6,10 +6,10 @@ use Craue\ConfigBundle\Util\Config;
use Doctrine\ORM\EntityManagerInterface;
use Predis\Client;
use Symfony\Component\HttpFoundation\File\UploadedFile;
use Tests\Wallabag\WallabagCoreTestCase;
use Tests\Wallabag\WallabagTestCase;
use Wallabag\Entity\Entry;
class WallabagV1ControllerTest extends WallabagCoreTestCase
class WallabagV1ControllerTest extends WallabagTestCase
{
public function testImportWallabag()
{

View file

@ -6,10 +6,10 @@ use Craue\ConfigBundle\Util\Config;
use Doctrine\ORM\EntityManagerInterface;
use Predis\Client;
use Symfony\Component\HttpFoundation\File\UploadedFile;
use Tests\Wallabag\WallabagCoreTestCase;
use Tests\Wallabag\WallabagTestCase;
use Wallabag\Entity\Entry;
class WallabagV2ControllerTest extends WallabagCoreTestCase
class WallabagV2ControllerTest extends WallabagTestCase
{
public function testImportWallabag()
{