Add some groups legacy, functional, web, authenticated

This commit is contained in:
Benoît Burnichon
2015-06-15 19:30:51 +02:00
parent 6fdecbe6cb
commit b272ce5aac
492 changed files with 1982 additions and 0 deletions

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\ACL;
use Alchemy\Phrasea\ACL\BasketACL; use Alchemy\Phrasea\ACL\BasketACL;
/**
* @group functional
* @group legacy
*/
class BasketACLTest extends \PhraseanetTestCase class BasketACLTest extends \PhraseanetTestCase
{ {
public function testOwnerIsOwner() public function testOwnerIsOwner()

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Application;
use Symfony\Component\Process\Process; use Symfony\Component\Process\Process;
/**
* @group functional
* @group legacy
*/
class ConsoleAPITest extends \PhraseanetTestCase class ConsoleAPITest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -2,6 +2,12 @@
namespace Alchemy\Tests\Phrasea\Application; namespace Alchemy\Tests\Phrasea\Application;
/**
* @group functional
* @group legacy
* @group authenticated
* @group web
*/
class LightboxTest extends \PhraseanetAuthenticatedWebTestCase class LightboxTest extends \PhraseanetAuthenticatedWebTestCase
{ {
protected $client; protected $client;

View File

@@ -8,6 +8,12 @@ use Alchemy\Phrasea\Model\Entities\FeedItem;
use Alchemy\Phrasea\Model\Serializer\CaptionSerializer; use Alchemy\Phrasea\Model\Serializer\CaptionSerializer;
use Symfony\Component\HttpFoundation\File\UploadedFile; use Symfony\Component\HttpFoundation\File\UploadedFile;
/**
* @group functional
* @group legacy
* @group authenticated
* @group web
*/
class OverviewTest extends \PhraseanetAuthenticatedWebTestCase class OverviewTest extends \PhraseanetAuthenticatedWebTestCase
{ {
public function testDatafilesRouteAuthenticated() public function testDatafilesRouteAuthenticated()

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Application;
use Alchemy\Phrasea\Application; use Alchemy\Phrasea\Application;
/**
* @group functional
* @group legacy
*/
class RootApplicationTest extends \PhraseanetTestCase class RootApplicationTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -18,6 +18,10 @@ use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\HttpKernel\KernelEvents; use Symfony\Component\HttpKernel\KernelEvents;
use Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent; use Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent;
/**
* @group functional
* @group legacy
*/
class ApplicationTest extends \PhraseanetTestCase class ApplicationTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -2,6 +2,10 @@
namespace Alchemy\Tests\Phrasea\Authentication; namespace Alchemy\Tests\Phrasea\Authentication;
/**
* @group functional
* @group legacy
*/
class ACLProviderTest extends \PhraseanetTestCase class ACLProviderTest extends \PhraseanetTestCase
{ {
public function testGetACL() public function testGetACL()

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Authentication;
use Alchemy\Phrasea\Authentication\AccountCreator; use Alchemy\Phrasea\Authentication\AccountCreator;
/**
* @group functional
* @group legacy
*/
class AccountCreatorTest extends \PhraseanetTestCase class AccountCreatorTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -6,6 +6,10 @@ use Alchemy\Phrasea\Authentication\Authenticator;
use Alchemy\Phrasea\Exception\RuntimeException; use Alchemy\Phrasea\Exception\RuntimeException;
use Alchemy\Phrasea\Model\Entities\Session; use Alchemy\Phrasea\Model\Entities\Session;
/**
* @group functional
* @group legacy
*/
class AuthenticatorTest extends \PhraseanetTestCase class AuthenticatorTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Authentication;
use Alchemy\Phrasea\Authentication\Context; use Alchemy\Phrasea\Authentication\Context;
/**
* @group functional
* @group legacy
*/
class ContextTest extends \PhraseanetTestCase class ContextTest extends \PhraseanetTestCase
{ {
public function testWithValidCOntext() public function testWithValidCOntext()

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Authentication;
use Alchemy\Phrasea\Authentication\Manager; use Alchemy\Phrasea\Authentication\Manager;
/**
* @group functional
* @group legacy
*/
class ManagerTest extends \PhraseanetTestCase class ManagerTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -5,6 +5,10 @@ namespace Alchemy\Tests\Phrasea\Authentication\PersistentCookie;
use Alchemy\Phrasea\Authentication\PersistentCookie\Manager; use Alchemy\Phrasea\Authentication\PersistentCookie\Manager;
use Alchemy\Phrasea\Model\Entities\Session; use Alchemy\Phrasea\Model\Entities\Session;
/**
* @group functional
* @group legacy
*/
class ManagerTest extends \PhraseanetTestCase class ManagerTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Authentication\Phrasea;
use Alchemy\Phrasea\Authentication\Phrasea\FailureHandledNativeAuthentication; use Alchemy\Phrasea\Authentication\Phrasea\FailureHandledNativeAuthentication;
/**
* @group functional
* @group legacy
*/
class FailureHandledNativeAuthenticationTest extends \PhraseanetTestCase class FailureHandledNativeAuthenticationTest extends \PhraseanetTestCase
{ {
public function testGetUsrIdWhenSuccessful() public function testGetUsrIdWhenSuccessful()

View File

@@ -7,6 +7,10 @@ use Alchemy\Phrasea\Model\Entities\AuthFailure;
use Gedmo\Timestampable\TimestampableListener; use Gedmo\Timestampable\TimestampableListener;
use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Request;
/**
* @group functional
* @group legacy
*/
class FailureManagerTest extends \PhraseanetTestCase class FailureManagerTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -6,6 +6,10 @@ use Alchemy\Phrasea\Authentication\Phrasea\NativeAuthentication;
use Alchemy\Phrasea\Authentication\Exception\AccountLockedException; use Alchemy\Phrasea\Authentication\Exception\AccountLockedException;
use Alchemy\Phrasea\Model\Entities\User; use Alchemy\Phrasea\Model\Entities\User;
/**
* @group functional
* @group legacy
*/
class NativeAuthenticationTest extends \PhraseanetTestCase class NativeAuthenticationTest extends \PhraseanetTestCase
{ {
public function testAuthenticationSpecialUser() public function testAuthenticationSpecialUser()

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Authentication\Phrasea;
use Alchemy\Phrasea\Authentication\Phrasea\OldPasswordEncoder; use Alchemy\Phrasea\Authentication\Phrasea\OldPasswordEncoder;
/**
* @group functional
* @group legacy
*/
class OldPasswordEncoderTest extends \PhraseanetTestCase class OldPasswordEncoderTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Authentication\Phrasea;
use Alchemy\Phrasea\Authentication\Phrasea\PasswordEncoder; use Alchemy\Phrasea\Authentication\Phrasea\PasswordEncoder;
/**
* @group functional
* @group legacy
*/
class PasswordEncoderTest extends \PhraseanetTestCase class PasswordEncoderTest extends \PhraseanetTestCase
{ {
public function providePasswords() public function providePasswords()

View File

@@ -6,6 +6,10 @@ use Alchemy\Phrasea\Authentication\Provider\Facebook;
use Alchemy\Phrasea\Authentication\Provider\ProviderInterface; use Alchemy\Phrasea\Authentication\Provider\ProviderInterface;
use Alchemy\Phrasea\Authentication\Provider\Token\Identity; use Alchemy\Phrasea\Authentication\Provider\Token\Identity;
/**
* @group functional
* @group legacy
*/
class FacebookTest extends ProviderTestCase class FacebookTest extends ProviderTestCase
{ {
public function testGetSetSession() public function testGetSetSession()

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Authentication\Provider;
use Alchemy\Phrasea\Authentication\Provider\Factory; use Alchemy\Phrasea\Authentication\Provider\Factory;
/**
* @group functional
* @group legacy
*/
class FactoryTest extends \PhraseanetTestCase class FactoryTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -6,6 +6,10 @@ use Alchemy\Phrasea\Authentication\Provider\Github;
use Alchemy\Phrasea\Authentication\Provider\ProviderInterface; use Alchemy\Phrasea\Authentication\Provider\ProviderInterface;
use Alchemy\Phrasea\Authentication\Provider\Token\Identity; use Alchemy\Phrasea\Authentication\Provider\Token\Identity;
/**
* @group functional
* @group legacy
*/
class GithubTest extends ProviderTestCase class GithubTest extends ProviderTestCase
{ {
public function provideDataForFailingCallback() public function provideDataForFailingCallback()

View File

@@ -6,6 +6,10 @@ use Alchemy\Phrasea\Authentication\Provider\GooglePlus;
use Alchemy\Phrasea\Authentication\Provider\ProviderInterface; use Alchemy\Phrasea\Authentication\Provider\ProviderInterface;
use Alchemy\Phrasea\Authentication\Provider\Token\Identity; use Alchemy\Phrasea\Authentication\Provider\Token\Identity;
/**
* @group functional
* @group legacy
*/
class GooglePlusTest extends ProviderTestCase class GooglePlusTest extends ProviderTestCase
{ {
public function testGetSetGoogleClient() public function testGetSetGoogleClient()

View File

@@ -6,6 +6,10 @@ use Alchemy\Phrasea\Authentication\Provider\Linkedin;
use Alchemy\Phrasea\Authentication\Provider\ProviderInterface; use Alchemy\Phrasea\Authentication\Provider\ProviderInterface;
use Alchemy\Phrasea\Authentication\Provider\Token\Identity; use Alchemy\Phrasea\Authentication\Provider\Token\Identity;
/**
* @group functional
* @group legacy
*/
class LinkedinTest extends ProviderTestCase class LinkedinTest extends ProviderTestCase
{ {
public function provideDataForFailingCallback() public function provideDataForFailingCallback()

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Authentication\Provider\Token;
use Alchemy\Phrasea\Authentication\Provider\Token\Identity; use Alchemy\Phrasea\Authentication\Provider\Token\Identity;
/**
* @group functional
* @group legacy
*/
class IdentityTest extends \PhraseanetTestCase class IdentityTest extends \PhraseanetTestCase
{ {
public function testThatOffsetAreSetOnConstruct() public function testThatOffsetAreSetOnConstruct()

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Authentication\Provider\Token;
use Alchemy\Phrasea\Authentication\Provider\Token\Token; use Alchemy\Phrasea\Authentication\Provider\Token\Token;
/**
* @group functional
* @group legacy
*/
class TokenTest extends \PhraseanetTestCase class TokenTest extends \PhraseanetTestCase
{ {
public function testGetIdAndProvider() public function testGetIdAndProvider()

View File

@@ -6,6 +6,10 @@ use Alchemy\Phrasea\Authentication\Provider\Twitter;
use Alchemy\Phrasea\Authentication\Provider\ProviderInterface; use Alchemy\Phrasea\Authentication\Provider\ProviderInterface;
use Alchemy\Phrasea\Authentication\Provider\Token\Identity; use Alchemy\Phrasea\Authentication\Provider\Token\Identity;
/**
* @group functional
* @group legacy
*/
class TwitterTest extends ProviderTestCase class TwitterTest extends ProviderTestCase
{ {
public function testGetSetGuzzleClient() public function testGetSetGuzzleClient()

View File

@@ -6,6 +6,10 @@ use Alchemy\Phrasea\Authentication\Provider\Viadeo;
use Alchemy\Phrasea\Authentication\Provider\ProviderInterface; use Alchemy\Phrasea\Authentication\Provider\ProviderInterface;
use Alchemy\Phrasea\Authentication\Provider\Token\Identity; use Alchemy\Phrasea\Authentication\Provider\Token\Identity;
/**
* @group functional
* @group legacy
*/
class ViadeoTest extends ProviderTestCase class ViadeoTest extends ProviderTestCase
{ {
public function provideDataForFailingCallback() public function provideDataForFailingCallback()

View File

@@ -5,6 +5,10 @@ namespace Alchemy\Tests\Phrasea\Authentication;
use Alchemy\Phrasea\Authentication\ProvidersCollection; use Alchemy\Phrasea\Authentication\ProvidersCollection;
use Alchemy\Phrasea\Exception\InvalidArgumentException; use Alchemy\Phrasea\Exception\InvalidArgumentException;
/**
* @group functional
* @group legacy
*/
class ProvidersCollectionTest extends \PhraseanetTestCase class ProvidersCollectionTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -5,6 +5,10 @@ namespace Alchemy\Tests\Phrasea\Authentication;
use Alchemy\Phrasea\Authentication\Provider\Token\Identity; use Alchemy\Phrasea\Authentication\Provider\Token\Identity;
use Alchemy\Phrasea\Authentication\SuggestionFinder; use Alchemy\Phrasea\Authentication\SuggestionFinder;
/**
* @group functional
* @group legacy
*/
class SuggestionFinderTest extends \PhraseanetTestCase class SuggestionFinderTest extends \PhraseanetTestCase
{ {
public function testSuggestionIsFound() public function testSuggestionIsFound()

View File

@@ -9,6 +9,10 @@ use PHPExiftool\Driver\Tag\IPTC\UniqueDocumentID;
use PHPExiftool\Driver\Value\Mono; use PHPExiftool\Driver\Value\Mono;
use PHPExiftool\Driver\Metadata\Metadata; use PHPExiftool\Driver\Metadata\Metadata;
/**
* @group functional
* @group legacy
*/
class FactoryTest extends \PhraseanetTestCase class FactoryTest extends \PhraseanetTestCase
{ {

View File

@@ -5,6 +5,10 @@ namespace Alchemy\Tests\Phrasea\Border\Attribute;
use Alchemy\Phrasea\Border\Attribute\MetaField; use Alchemy\Phrasea\Border\Attribute\MetaField;
use Alchemy\Phrasea\Border\Attribute\AttributeInterface; use Alchemy\Phrasea\Border\Attribute\AttributeInterface;
/**
* @group functional
* @group legacy
*/
class MetaFieldTest extends \PhraseanetTestCase class MetaFieldTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -8,6 +8,10 @@ use PHPExiftool\Driver\Tag\IPTC\ObjectName;
use PHPExiftool\Driver\Value\Mono; use PHPExiftool\Driver\Value\Mono;
use PHPExiftool\Driver\Metadata\Metadata as ExiftoolMeta; use PHPExiftool\Driver\Metadata\Metadata as ExiftoolMeta;
/**
* @group functional
* @group legacy
*/
class MetadataTest extends \PhraseanetTestCase class MetadataTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -5,6 +5,10 @@ namespace Alchemy\Tests\Phrasea\Border\Attribute;
use Alchemy\Phrasea\Border\Attribute\Status; use Alchemy\Phrasea\Border\Attribute\Status;
use Alchemy\Phrasea\Border\Attribute\AttributeInterface; use Alchemy\Phrasea\Border\Attribute\AttributeInterface;
/**
* @group functional
* @group legacy
*/
class StatusTest extends \PhraseanetTestCase class StatusTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -5,6 +5,10 @@ namespace Alchemy\Tests\Phrasea\Border\Attribute;
use Alchemy\Phrasea\Border\Attribute\Story; use Alchemy\Phrasea\Border\Attribute\Story;
use Alchemy\Phrasea\Border\Attribute\AttributeInterface; use Alchemy\Phrasea\Border\Attribute\AttributeInterface;
/**
* @group functional
* @group legacy
*/
class StoryTest extends \PhraseanetTestCase class StoryTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -7,6 +7,10 @@ use Alchemy\Phrasea\Border\File;
use Doctrine\ORM\EntityManager; use Doctrine\ORM\EntityManager;
use Symfony\Component\Translation\TranslatorInterface; use Symfony\Component\Translation\TranslatorInterface;
/**
* @group functional
* @group legacy
*/
class AbstractCheckerTest extends \PhraseanetTestCase class AbstractCheckerTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -5,6 +5,10 @@ namespace Alchemy\Tests\Phrasea\Border\Checker;
use Alchemy\Phrasea\Border\File; use Alchemy\Phrasea\Border\File;
use Alchemy\Phrasea\Border\Checker\Colorspace; use Alchemy\Phrasea\Border\Checker\Colorspace;
/**
* @group functional
* @group legacy
*/
class ColorspaceTest extends \PhraseanetTestCase class ColorspaceTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -5,6 +5,10 @@ namespace Alchemy\Tests\Phrasea\Border\Checker;
use Alchemy\Phrasea\Border\File; use Alchemy\Phrasea\Border\File;
use Alchemy\Phrasea\Border\Checker\Dimension; use Alchemy\Phrasea\Border\Checker\Dimension;
/**
* @group functional
* @group legacy
*/
class DimensionTest extends \PhraseanetTestCase class DimensionTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -5,6 +5,10 @@ namespace Alchemy\Tests\Phrasea\Border\Checker;
use Alchemy\Phrasea\Border\File; use Alchemy\Phrasea\Border\File;
use Alchemy\Phrasea\Border\Checker\Extension; use Alchemy\Phrasea\Border\Checker\Extension;
/**
* @group functional
* @group legacy
*/
class ExtensionTest extends \PhraseanetTestCase class ExtensionTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -5,6 +5,10 @@ namespace Alchemy\Tests\Phrasea\Border\Checker;
use Alchemy\Phrasea\Border\File; use Alchemy\Phrasea\Border\File;
use Alchemy\Phrasea\Border\Checker\Filename; use Alchemy\Phrasea\Border\Checker\Filename;
/**
* @group functional
* @group legacy
*/
class FilenameTest extends \PhraseanetTestCase class FilenameTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -5,6 +5,10 @@ namespace Alchemy\Tests\Phrasea\Border\Checker;
use Alchemy\Phrasea\Border\File; use Alchemy\Phrasea\Border\File;
use Alchemy\Phrasea\Border\Checker\MediaType; use Alchemy\Phrasea\Border\Checker\MediaType;
/**
* @group functional
* @group legacy
*/
class MediaTypeTest extends \PhraseanetTestCase class MediaTypeTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -6,6 +6,10 @@ use Alchemy\Phrasea\Border\Checker\CheckerInterface;
use Alchemy\Phrasea\Border\Checker\Response; use Alchemy\Phrasea\Border\Checker\Response;
use Alchemy\Tests\Tools\TranslatorMockTrait; use Alchemy\Tests\Tools\TranslatorMockTrait;
/**
* @group functional
* @group legacy
*/
class ResponseTest extends \PhraseanetTestCase class ResponseTest extends \PhraseanetTestCase
{ {
use TranslatorMockTrait; use TranslatorMockTrait;

View File

@@ -6,6 +6,10 @@ use Alchemy\Phrasea\Border\Manager;
use Alchemy\Phrasea\Border\File; use Alchemy\Phrasea\Border\File;
use Alchemy\Phrasea\Border\Checker\Sha256; use Alchemy\Phrasea\Border\Checker\Sha256;
/**
* @group functional
* @group legacy
*/
class Sha256Test extends \PhraseanetTestCase class Sha256Test extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -5,6 +5,10 @@ namespace Alchemy\Tests\Phrasea\Border\Checker;
use Alchemy\Phrasea\Border\File; use Alchemy\Phrasea\Border\File;
use Alchemy\Phrasea\Border\Checker\UUID; use Alchemy\Phrasea\Border\Checker\UUID;
/**
* @group functional
* @group legacy
*/
class UUIDTest extends \PhraseanetTestCase class UUIDTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Border;
use Alchemy\Phrasea\Border\CustomExtensionGuesser; use Alchemy\Phrasea\Border\CustomExtensionGuesser;
/**
* @group functional
* @group legacy
*/
class CustomExtensionGuesserTest extends \PhraseanetTestCase class CustomExtensionGuesserTest extends \PhraseanetTestCase
{ {
public function testGuess() public function testGuess()

View File

@@ -17,6 +17,10 @@ use PHPExiftool\Driver\Metadata\Metadata as PHPExiftoolMetadata;
use Alchemy\Phrasea\Border\Attribute\Metadata; use Alchemy\Phrasea\Border\Attribute\Metadata;
use Rhumsaa\Uuid\Uuid; use Rhumsaa\Uuid\Uuid;
/**
* @group functional
* @group legacy
*/
class FileTest extends \PhraseanetTestCase class FileTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -14,6 +14,12 @@ use Alchemy\Phrasea\Border\Attribute\Metadata;
use Alchemy\Phrasea\Border\Attribute\Status; use Alchemy\Phrasea\Border\Attribute\Status;
use Alchemy\Phrasea\Border\Attribute\Story; use Alchemy\Phrasea\Border\Attribute\Story;
/**
* @group functional
* @group legacy
* @group authenticated
* @group web
*/
class ManagerTest extends \PhraseanetAuthenticatedWebTestCase class ManagerTest extends \PhraseanetAuthenticatedWebTestCase
{ {
/** /**

View File

@@ -5,6 +5,10 @@ namespace Alchemy\Tests\Phrasea\Border;
use Alchemy\Phrasea\Border\Attribute\MetaField; use Alchemy\Phrasea\Border\Attribute\MetaField;
use Alchemy\Phrasea\Border\MetaFieldsBag; use Alchemy\Phrasea\Border\MetaFieldsBag;
/**
* @group functional
* @group legacy
*/
class MetaFieldsBagTest extends \PhraseanetTestCase class MetaFieldsBagTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -7,6 +7,10 @@ use PHPExiftool\Driver\Metadata\Metadata;
use PHPExiftool\Driver\Value\Mono; use PHPExiftool\Driver\Value\Mono;
use PHPExiftool\Driver\Value\Multi; use PHPExiftool\Driver\Value\Multi;
/**
* @group functional
* @group legacy
*/
class MetadataBagTest extends \PhraseanetTestCase class MetadataBagTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -6,6 +6,10 @@ use Alchemy\Phrasea\Border\Visa;
use Alchemy\Phrasea\Border\Checker\Filename; use Alchemy\Phrasea\Border\Checker\Filename;
use Alchemy\Phrasea\Border\Checker\Response; use Alchemy\Phrasea\Border\Checker\Response;
/**
* @group functional
* @group legacy
*/
class VisaTest extends \PhraseanetTestCase class VisaTest extends \PhraseanetTestCase
{ {

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea;
use Alchemy\Phrasea\CLI; use Alchemy\Phrasea\CLI;
/**
* @group functional
* @group legacy
*/
class CLITest extends \PhraseanetTestCase class CLITest extends \PhraseanetTestCase
{ {
public function testsEmailWithoutQueue() public function testsEmailWithoutQueue()

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Cache;
use Alchemy\Phrasea\Cache\ApcCache; use Alchemy\Phrasea\Cache\ApcCache;
/**
* @group functional
* @group legacy
*/
class ApcCacheTest extends \PhraseanetTestCase class ApcCacheTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Cache;
use Alchemy\Phrasea\Cache\ArrayCache; use Alchemy\Phrasea\Cache\ArrayCache;
/**
* @group functional
* @group legacy
*/
class ArrayCacheTest extends \PhraseanetTestCase class ArrayCacheTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -5,6 +5,10 @@ namespace Alchemy\Tests\Phrasea\Cache;
use Alchemy\Phrasea\Cache\ConnectionFactory; use Alchemy\Phrasea\Cache\ConnectionFactory;
use Alchemy\Phrasea\Cache\Factory; use Alchemy\Phrasea\Cache\Factory;
/**
* @group functional
* @group legacy
*/
class ConnectionFactoryTest extends \PhraseanetTestCase class ConnectionFactoryTest extends \PhraseanetTestCase
{ {
public function testGetRedisConnection() public function testGetRedisConnection()

View File

@@ -5,6 +5,10 @@ namespace Alchemy\Tests\Phrasea\Cache;
use Alchemy\Phrasea\Cache\ConnectionFactory; use Alchemy\Phrasea\Cache\ConnectionFactory;
use Alchemy\Phrasea\Cache\Factory; use Alchemy\Phrasea\Cache\Factory;
/**
* @group functional
* @group legacy
*/
class FactoryTest extends \PhraseanetTestCase class FactoryTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -6,6 +6,10 @@ use Alchemy\Phrasea\Cache\Manager;
use Alchemy\Phrasea\Core\Configuration\Compiler; use Alchemy\Phrasea\Core\Configuration\Compiler;
use Alchemy\Phrasea\Exception\RuntimeException; use Alchemy\Phrasea\Exception\RuntimeException;
/**
* @group functional
* @group legacy
*/
class ManagerTest extends \PhraseanetTestCase class ManagerTest extends \PhraseanetTestCase
{ {
private $file; private $file;

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Cache;
use Alchemy\Phrasea\Cache\MemcacheCache; use Alchemy\Phrasea\Cache\MemcacheCache;
/**
* @group functional
* @group legacy
*/
class MemcacheCacheTest extends \PhraseanetTestCase class MemcacheCacheTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Cache;
use Alchemy\Phrasea\Cache\MemcachedCache; use Alchemy\Phrasea\Cache\MemcachedCache;
/**
* @group functional
* @group legacy
*/
class MemcachedCacheTest extends \PhraseanetTestCase class MemcachedCacheTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Cache;
use \Alchemy\Phrasea\Cache\RedisCache; use \Alchemy\Phrasea\Cache\RedisCache;
/**
* @group functional
* @group legacy
*/
class RedisCacheTest extends \PhraseanetTestCase class RedisCacheTest extends \PhraseanetTestCase
{ {

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Cache;
use Alchemy\Phrasea\Cache\XcacheCache; use Alchemy\Phrasea\Cache\XcacheCache;
/**
* @group functional
* @group legacy
*/
class XcacheCacheTest extends \PhraseanetTestCase class XcacheCacheTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Command;
use Alchemy\Phrasea\Command\CheckConfig; use Alchemy\Phrasea\Command\CheckConfig;
/**
* @group functional
* @group legacy
*/
class CheckConfigTest extends \PhraseanetTestCase class CheckConfigTest extends \PhraseanetTestCase
{ {
public function testRunWithoutProblems() public function testRunWithoutProblems()

View File

@@ -6,6 +6,10 @@ use Alchemy\Phrasea\Command\Command;
use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Output\OutputInterface;
/**
* @group functional
* @group legacy
*/
class CommandTest extends \PhraseanetTestCase class CommandTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Command\Compile;
use Alchemy\Phrasea\Command\Compile\Configuration; use Alchemy\Phrasea\Command\Compile\Configuration;
/**
* @group functional
* @group legacy
*/
class ConfigurationTest extends \PhraseanetTestCase class ConfigurationTest extends \PhraseanetTestCase
{ {
public function testExecute() public function testExecute()

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Command\Developper;
use Alchemy\Phrasea\Command\Developer\BowerInstall; use Alchemy\Phrasea\Command\Developer\BowerInstall;
/**
* @group functional
* @group legacy
*/
class BowerInstallTest extends \PhraseanetTestCase class BowerInstallTest extends \PhraseanetTestCase
{ {
public function testRunWithoutProblems() public function testRunWithoutProblems()

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Command\Developper;
use Alchemy\Phrasea\Command\Developer\ComposerInstall; use Alchemy\Phrasea\Command\Developer\ComposerInstall;
/**
* @group functional
* @group legacy
*/
class ComposerInstallTest extends \PhraseanetTestCase class ComposerInstallTest extends \PhraseanetTestCase
{ {
public function testRunWithoutProblems() public function testRunWithoutProblems()

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Command\Developper;
use Alchemy\Phrasea\Command\Developer\InstallAll; use Alchemy\Phrasea\Command\Developer\InstallAll;
/**
* @group functional
* @group legacy
*/
class InstallAllTest extends \PhraseanetTestCase class InstallAllTest extends \PhraseanetTestCase
{ {
public function testRunWithoutProblems() public function testRunWithoutProblems()

View File

@@ -5,6 +5,10 @@ namespace Alchemy\Tests\Phrasea\Command\Developper\Utils;
use Alchemy\Phrasea\Command\Developer\Utils\BowerDriver; use Alchemy\Phrasea\Command\Developer\Utils\BowerDriver;
use Symfony\Component\Process\PhpExecutableFinder; use Symfony\Component\Process\PhpExecutableFinder;
/**
* @group functional
* @group legacy
*/
class BowerDriverTest extends \PhraseanetTestCase class BowerDriverTest extends \PhraseanetTestCase
{ {
public function testCreate() public function testCreate()

View File

@@ -5,6 +5,10 @@ namespace Alchemy\Tests\Phrasea\Command\Developper\Utils;
use Alchemy\Phrasea\Command\Developer\Utils\ComposerDriver; use Alchemy\Phrasea\Command\Developer\Utils\ComposerDriver;
use Symfony\Component\Process\PhpExecutableFinder; use Symfony\Component\Process\PhpExecutableFinder;
/**
* @group functional
* @group legacy
*/
class ComposerDriverTest extends \PhraseanetTestCase class ComposerDriverTest extends \PhraseanetTestCase
{ {
public function testCreate() public function testCreate()

View File

@@ -6,6 +6,10 @@ use Alchemy\Phrasea\Command\Developer\Utils\GruntDriver;
use Alchemy\Phrasea\Core\CLIProvider\CLIDriversServiceProvider; use Alchemy\Phrasea\Core\CLIProvider\CLIDriversServiceProvider;
use Symfony\Component\Process\PhpExecutableFinder; use Symfony\Component\Process\PhpExecutableFinder;
/**
* @group functional
* @group legacy
*/
class GruntDriverTest extends \PhraseanetTestCase class GruntDriverTest extends \PhraseanetTestCase
{ {
public function testCreate() public function testCreate()

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Command\Developper\Utils;
use Alchemy\Phrasea\Command\Developer\Utils\RecessDriver; use Alchemy\Phrasea\Command\Developer\Utils\RecessDriver;
/**
* @group functional
* @group legacy
*/
class RecessDriverTest extends \PhraseanetTestCase class RecessDriverTest extends \PhraseanetTestCase
{ {
public function testGetCreate() public function testGetCreate()

View File

@@ -6,6 +6,10 @@ use Alchemy\Phrasea\Command\Developer\Utils\UglifyJsDriver;
use Alchemy\Phrasea\Core\CLIProvider\CLIDriversServiceProvider; use Alchemy\Phrasea\Core\CLIProvider\CLIDriversServiceProvider;
use Symfony\Component\Process\PhpExecutableFinder; use Symfony\Component\Process\PhpExecutableFinder;
/**
* @group functional
* @group legacy
*/
class UglifyJsDriverTest extends \PhraseanetTestCase class UglifyJsDriverTest extends \PhraseanetTestCase
{ {
public function testCreate() public function testCreate()

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Command;
use Alchemy\Phrasea\Command\MailTest; use Alchemy\Phrasea\Command\MailTest;
/**
* @group functional
* @group legacy
*/
class MailTestTest extends \PhraseanetTestCase class MailTestTest extends \PhraseanetTestCase
{ {
public function testMailIsSent() public function testMailIsSent()

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Command\Plugin;
use Alchemy\Phrasea\Command\Plugin\AddPlugin; use Alchemy\Phrasea\Command\Plugin\AddPlugin;
/**
* @group functional
* @group legacy
*/
class AddPluginTest extends PluginCommandTestCase class AddPluginTest extends PluginCommandTestCase
{ {
public function testExecute() public function testExecute()

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Command\Plugin;
use Alchemy\Phrasea\Command\Plugin\DisablePlugin; use Alchemy\Phrasea\Command\Plugin\DisablePlugin;
/**
* @group functional
* @group legacy
*/
class DisablePluginTest extends PluginCommandTestCase class DisablePluginTest extends PluginCommandTestCase
{ {
/** /**

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Command\Plugin;
use Alchemy\Phrasea\Command\Plugin\EnablePlugin; use Alchemy\Phrasea\Command\Plugin\EnablePlugin;
/**
* @group functional
* @group legacy
*/
class EnablePluginTest extends PluginCommandTestCase class EnablePluginTest extends PluginCommandTestCase
{ {
/** /**

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Command\Plugin;
use Alchemy\Phrasea\Command\Plugin\ListPlugin; use Alchemy\Phrasea\Command\Plugin\ListPlugin;
/**
* @group functional
* @group legacy
*/
class ListPluginTest extends PluginCommandTestCase class ListPluginTest extends PluginCommandTestCase
{ {
public function testExecute() public function testExecute()

View File

@@ -2,6 +2,10 @@
namespace Alchemy\Tests\Phrasea\Command\Plugin; namespace Alchemy\Tests\Phrasea\Command\Plugin;
/**
* @group functional
* @group legacy
*/
class PluginCommandTestCase extends \PhraseanetTestCase class PluginCommandTestCase extends \PhraseanetTestCase
{ {
protected function createTemporaryFilesystemMock() protected function createTemporaryFilesystemMock()

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Command\Plugin;
use Alchemy\Phrasea\Command\Plugin\RemovePlugin; use Alchemy\Phrasea\Command\Plugin\RemovePlugin;
/**
* @group functional
* @group legacy
*/
class RemovePluginTest extends PluginCommandTestCase class RemovePluginTest extends PluginCommandTestCase
{ {
public function testExecute() public function testExecute()

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Command\Setup;
use Alchemy\Phrasea\Command\Setup\CheckEnvironment; use Alchemy\Phrasea\Command\Setup\CheckEnvironment;
/**
* @group functional
* @group legacy
*/
class CheckEnvironmentTest extends \PhraseanetTestCase class CheckEnvironmentTest extends \PhraseanetTestCase
{ {
public function testRunWithoutProblems() public function testRunWithoutProblems()

View File

@@ -5,6 +5,10 @@ namespace Alchemy\Tests\Phrasea\Command\Setup;
use Alchemy\Phrasea\Command\Setup\Install; use Alchemy\Phrasea\Command\Setup\Install;
use Symfony\Component\Yaml\Yaml; use Symfony\Component\Yaml\Yaml;
/**
* @group functional
* @group legacy
*/
class InstallTest extends \PhraseanetTestCase class InstallTest extends \PhraseanetTestCase
{ {
public function testRunWithoutProblems() public function testRunWithoutProblems()

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Command\Setup;
use Alchemy\Phrasea\Command\Setup\PluginsReset; use Alchemy\Phrasea\Command\Setup\PluginsReset;
/**
* @group functional
* @group legacy
*/
class PluginResetTest extends \PhraseanetTestCase class PluginResetTest extends \PhraseanetTestCase
{ {
public function testRun() public function testRun()

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Command\Setup;
use Alchemy\Phrasea\Command\Setup\XSendFileMappingGenerator; use Alchemy\Phrasea\Command\Setup\XSendFileMappingGenerator;
/**
* @group functional
* @group legacy
*/
class XSendFileMappingGeneratorTest extends \PhraseanetTestCase class XSendFileMappingGeneratorTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Command\Task;
use Alchemy\Phrasea\Command\Task\SchedulerPauseTasks; use Alchemy\Phrasea\Command\Task\SchedulerPauseTasks;
/**
* @group functional
* @group legacy
*/
class SchedulerPauseTest extends \PhraseanetTestCase class SchedulerPauseTest extends \PhraseanetTestCase
{ {
public function testRunWithoutProblems() public function testRunWithoutProblems()

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Command\Task;
use Alchemy\Phrasea\Command\Task\SchedulerResumeTasks; use Alchemy\Phrasea\Command\Task\SchedulerResumeTasks;
/**
* @group functional
* @group legacy
*/
class SchedulerResumeTest extends \PhraseanetTestCase class SchedulerResumeTest extends \PhraseanetTestCase
{ {
public function testRunWithoutProblems() public function testRunWithoutProblems()

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Command\Task;
use Alchemy\Phrasea\Command\Task\SchedulerRun; use Alchemy\Phrasea\Command\Task\SchedulerRun;
/**
* @group functional
* @group legacy
*/
class SchedulerRunTest extends \PhraseanetTestCase class SchedulerRunTest extends \PhraseanetTestCase
{ {
public function testRunWithoutProblems() public function testRunWithoutProblems()

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Command\Task;
use Alchemy\Phrasea\Command\Task\SchedulerState; use Alchemy\Phrasea\Command\Task\SchedulerState;
/**
* @group functional
* @group legacy
*/
class SchedulerStateTest extends \PhraseanetTestCase class SchedulerStateTest extends \PhraseanetTestCase
{ {
public function testRunWithoutProblems() public function testRunWithoutProblems()

View File

@@ -4,6 +4,10 @@ namespace Alchemy\Tests\Phrasea\Command\Task;
use Alchemy\Phrasea\Command\Task\TaskList; use Alchemy\Phrasea\Command\Task\TaskList;
/**
* @group functional
* @group legacy
*/
class TaskListTest extends \PhraseanetTestCase class TaskListTest extends \PhraseanetTestCase
{ {
public function testRunWithoutProblems() public function testRunWithoutProblems()

View File

@@ -5,6 +5,10 @@ namespace Alchemy\Tests\Phrasea\Command\Task;
use Alchemy\Phrasea\Command\Task\TaskRun; use Alchemy\Phrasea\Command\Task\TaskRun;
use Alchemy\Phrasea\Model\Entities\Task; use Alchemy\Phrasea\Model\Entities\Task;
/**
* @group functional
* @group legacy
*/
class TaskRunTest extends \PhraseanetTestCase class TaskRunTest extends \PhraseanetTestCase
{ {
public function testRunWithoutProblems() public function testRunWithoutProblems()

View File

@@ -5,6 +5,10 @@ namespace Alchemy\Tests\Phrasea\Command\Task;
use Alchemy\Phrasea\Command\Task\TaskStart; use Alchemy\Phrasea\Command\Task\TaskStart;
use Alchemy\Phrasea\Model\Entities\Task; use Alchemy\Phrasea\Model\Entities\Task;
/**
* @group functional
* @group legacy
*/
class TaskStartTest extends \PhraseanetTestCase class TaskStartTest extends \PhraseanetTestCase
{ {
public function testRunWithoutProblems() public function testRunWithoutProblems()

View File

@@ -5,6 +5,10 @@ namespace Alchemy\Tests\Phrasea\Command\Task;
use Alchemy\Phrasea\Command\Task\TaskState; use Alchemy\Phrasea\Command\Task\TaskState;
use Alchemy\Phrasea\Model\Entities\Task; use Alchemy\Phrasea\Model\Entities\Task;
/**
* @group functional
* @group legacy
*/
class TaskStateTest extends \PhraseanetTestCase class TaskStateTest extends \PhraseanetTestCase
{ {
public function testRunWithoutProblems() public function testRunWithoutProblems()

View File

@@ -5,6 +5,10 @@ namespace Alchemy\Tests\Phrasea\Command\Task;
use Alchemy\Phrasea\Command\Task\TaskStop; use Alchemy\Phrasea\Command\Task\TaskStop;
use Alchemy\Phrasea\Model\Entities\Task; use Alchemy\Phrasea\Model\Entities\Task;
/**
* @group functional
* @group legacy
*/
class TaskStopTest extends \PhraseanetTestCase class TaskStopTest extends \PhraseanetTestCase
{ {
public function testRunWithoutProblems() public function testRunWithoutProblems()

View File

@@ -6,6 +6,10 @@ use Alchemy\Phrasea\Command\UpgradeDBDatas;
use Alchemy\Phrasea\Command\Upgrade\Step31; use Alchemy\Phrasea\Command\Upgrade\Step31;
use Alchemy\Phrasea\Command\Upgrade\Step35; use Alchemy\Phrasea\Command\Upgrade\Step35;
/**
* @group functional
* @group legacy
*/
class UpgradeDBDatasTest extends \PhraseanetTestCase class UpgradeDBDatasTest extends \PhraseanetTestCase
{ {
/** /**

View File

@@ -7,6 +7,12 @@ use Alchemy\Phrasea\Authentication\ACLProvider;
use Alchemy\Phrasea\Border\File; use Alchemy\Phrasea\Border\File;
use Rhumsaa\Uuid\Uuid; use Rhumsaa\Uuid\Uuid;
/**
* @group functional
* @group legacy
* @group authenticated
* @group web
*/
class AdminCollectionTest extends \PhraseanetAuthenticatedWebTestCase class AdminCollectionTest extends \PhraseanetAuthenticatedWebTestCase
{ {
protected $client; protected $client;

View File

@@ -4,6 +4,12 @@ namespace Alchemy\Tests\Phrasea\Controller\Admin;
use Alchemy\Phrasea\Model\Entities\User; use Alchemy\Phrasea\Model\Entities\User;
/**
* @group functional
* @group legacy
* @group authenticated
* @group web
*/
class AdminDashboardTest extends \PhraseanetAuthenticatedWebTestCase class AdminDashboardTest extends \PhraseanetAuthenticatedWebTestCase
{ {
protected $client; protected $client;

View File

@@ -2,6 +2,12 @@
namespace Alchemy\Tests\Phrasea\Controller\Admin; namespace Alchemy\Tests\Phrasea\Controller\Admin;
/**
* @group functional
* @group legacy
* @group authenticated
* @group web
*/
class ConnectedUserTest extends \PhraseanetAuthenticatedWebTestCase class ConnectedUserTest extends \PhraseanetAuthenticatedWebTestCase
{ {
protected $client; protected $client;

View File

@@ -7,6 +7,12 @@ use Alchemy\Phrasea\Border\File;
use Rhumsaa\Uuid\Uuid; use Rhumsaa\Uuid\Uuid;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
/**
* @group functional
* @group legacy
* @group authenticated
* @group web
*/
class DataboxTest extends \PhraseanetAuthenticatedWebTestCase class DataboxTest extends \PhraseanetAuthenticatedWebTestCase
{ {
protected $client; protected $client;

View File

@@ -4,6 +4,12 @@ namespace Alchemy\Tests\Phrasea\Controller\Admin;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
/**
* @group functional
* @group legacy
* @group authenticated
* @group web
*/
class DataboxesTest extends \PhraseanetAuthenticatedWebTestCase class DataboxesTest extends \PhraseanetAuthenticatedWebTestCase
{ {
protected $client; protected $client;

View File

@@ -5,6 +5,12 @@ namespace Alchemy\Tests\Phrasea\Controller\Admin;
use PHPExiftool\Driver\Tag\IPTC\ObjectName; use PHPExiftool\Driver\Tag\IPTC\ObjectName;
use Alchemy\Phrasea\Vocabulary\Controller as VocabularyController; use Alchemy\Phrasea\Vocabulary\Controller as VocabularyController;
/**
* @group functional
* @group legacy
* @group authenticated
* @group web
*/
class FieldsTest extends \PhraseanetAuthenticatedWebTestCase class FieldsTest extends \PhraseanetAuthenticatedWebTestCase
{ {
public function testRoot() public function testRoot()

View File

@@ -2,6 +2,12 @@
namespace Alchemy\Tests\Phrasea\Controller\Admin; namespace Alchemy\Tests\Phrasea\Controller\Admin;
/**
* @group functional
* @group legacy
* @group authenticated
* @group web
*/
class PublicationTest extends \PhraseanetAuthenticatedWebTestCase class PublicationTest extends \PhraseanetAuthenticatedWebTestCase
{ {
public static $account = null; public static $account = null;

View File

@@ -2,6 +2,12 @@
namespace Alchemy\Tests\Phrasea\Controller\Admin; namespace Alchemy\Tests\Phrasea\Controller\Admin;
/**
* @group functional
* @group legacy
* @group authenticated
* @group web
*/
class RootTest extends \PhraseanetAuthenticatedWebTestCase class RootTest extends \PhraseanetAuthenticatedWebTestCase
{ {
protected $client; protected $client;

View File

@@ -4,6 +4,12 @@ namespace Alchemy\Tests\Phrasea\Controller\Admin;
use Symfony\Component\HttpKernel\Client; use Symfony\Component\HttpKernel\Client;
/**
* @group functional
* @group legacy
* @group authenticated
* @group web
*/
class SetupTest extends \PhraseanetAuthenticatedWebTestCase class SetupTest extends \PhraseanetAuthenticatedWebTestCase
{ {

View File

@@ -4,6 +4,12 @@ namespace Alchemy\Tests\Phrasea\Controller\Admin;
use Alchemy\Phrasea\Media\Subdef\Image; use Alchemy\Phrasea\Media\Subdef\Image;
/**
* @group functional
* @group legacy
* @group authenticated
* @group web
*/
class SubdefsTest extends \PhraseanetAuthenticatedWebTestCase class SubdefsTest extends \PhraseanetAuthenticatedWebTestCase
{ {
protected $client; protected $client;

Some files were not shown because too many files have changed in this diff Show More