Skip to content

Commit a63b0a3

Browse files
author
Matej Grgić
committed
fix: test namespace change
1 parent 7fcabcc commit a63b0a3

19 files changed

+19
-19
lines changed

tests/Integration/Http/Service/EventSubscriber/ViewResponseSubscriberTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Undabot\JsonApi\Tests\Integration\Http\Service\EventSubscriber;
5+
namespace Undabot\SymfonyJsonApi\Tests\Integration\Http\Service\EventSubscriber;
66

77
use PHPUnit\Framework\TestCase;
88
use Symfony\Component\EventDispatcher\EventDispatcher;

tests/Integration/Resource/Denormalizer/ResourceDenormalizerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Undabot\JsonApi\Tests\Integration\Resource\Denormalizer;
5+
namespace Undabot\SymfonyJsonApi\Tests\Integration\Resource\Denormalizer;
66

77
use Doctrine\Common\Annotations\AnnotationReader;
88
use PHPUnit\Framework\TestCase;

tests/Integration/Resource/Denormalizer/ResourceWithAliasesDenormalizerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Undabot\JsonApi\Tests\Integration\Resource\Denormalizer;
5+
namespace Undabot\SymfonyJsonApi\Tests\Integration\Resource\Denormalizer;
66

77
use Doctrine\Common\Annotations\AnnotationReader;
88
use PHPUnit\Framework\TestCase;

tests/Integration/Resource/Metadata/MetadataFactoryTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Undabot\JsonApi\Tests\Integration\Resource\Metadata;
5+
namespace Undabot\SymfonyJsonApi\Tests\Integration\Resource\Metadata;
66

77
use Doctrine\Common\Annotations\AnnotationReader;
88
use PHPUnit\Framework\TestCase;

tests/Integration/Resource/Metadata/ResourceAttributesMetadataTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Undabot\JsonApi\Tests\Integration\Resource\Metadata;
5+
namespace Undabot\SymfonyJsonApi\Tests\Integration\Resource\Metadata;
66

77
use Doctrine\Common\Annotations\Annotation\IgnoreAnnotation;
88
use Doctrine\Common\Annotations\AnnotationReader;

tests/Integration/Resource/Metadata/ResourceRelationshipsMetadataTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Undabot\JsonApi\Tests\Integration\Resource\Metadata;
5+
namespace Undabot\SymfonyJsonApi\Tests\Integration\Resource\Metadata;
66

77
use Doctrine\Common\Annotations\AnnotationReader;
88
use PHPUnit\Framework\TestCase;

tests/Unit/Exception/EventSubscriber/ExceptionListenerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Undabot\JsonApi\Tests\Unit\Exception\EventSubscriber;
5+
namespace Undabot\SymfonyJsonApi\Tests\Unit\Exception\EventSubscriber;
66

77
use PHPUnit\Framework\Attributes\DataProvider;
88
use PHPUnit\Framework\MockObject\MockObject;

tests/Unit/Http/Model/Response/ResourceCollectionResponseTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Undabot\JsonApi\Tests\Unit\Http\Service\Factory;
5+
namespace Undabot\SymfonyJsonApi\Tests\Unit\Http\Service\Factory;
66

77
use Assert\AssertionFailedException;
88
use PHPUnit\Framework\Attributes\DataProvider;

tests/Unit/Http/Service/EventSubscriber/ViewResponseSubscriberTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Undabot\JsonApi\Tests\Unit\Http\Service\EventSubscriber;
5+
namespace Undabot\SymfonyJsonApi\Tests\Unit\Http\Service\EventSubscriber;
66

77
use PHPUnit\Framework\Attributes\CoversClass;
88
use PHPUnit\Framework\Attributes\Medium;

tests/Unit/Http/Service/Factory/RequestFactoryTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Undabot\JsonApi\Tests\Unit\Http\Service\Factory;
5+
namespace Undabot\SymfonyJsonApi\Tests\Unit\Http\Service\Factory;
66

77
use Assert\AssertionFailedException;
88
use PHPUnit\Framework\MockObject\MockObject;

tests/Unit/Http/Service/ModelEncoder/ApiModelEncoderTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Undabot\JsonApi\Tests\Unit\Http\Service\ModelEncoder;
5+
namespace Undabot\SymfonyJsonApi\Tests\Unit\Http\Service\ModelEncoder;
66

77
use Assert\AssertionFailedException;
88
use PHPUnit\Framework\MockObject\MockObject;

tests/Unit/Http/Service/SimpleResourceHandlerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Undabot\JsonApi\Tests\Unit\Http\Service;
5+
namespace Undabot\SymfonyJsonApi\Tests\Unit\Http\Service;
66

77
use PHPUnit\Framework\MockObject\MockObject;
88
use PHPUnit\Framework\TestCase;

tests/Unit/Model/Collection/ArrayCollectionTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Undabot\JsonApi\Tests\Unit\Model\Collection;
5+
namespace Undabot\SymfonyJsonApi\Tests\Unit\Model\Collection;
66

77
use PHPUnit\Framework\TestCase;
88
use Undabot\SymfonyJsonApi\Model\Collection\ArrayCollection;

tests/Unit/Model/Collection/UniqueCollectionTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Undabot\JsonApi\Tests\Unit\Model\Collection;
5+
namespace Undabot\SymfonyJsonApi\Tests\Unit\Model\Collection;
66

77
use PHPUnit\Framework\TestCase;
88
use Undabot\SymfonyJsonApi\Model\Collection\UniqueCollection;

tests/Unit/Model/Collection/UniqueResourceCollectionTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Undabot\JsonApi\Tests\Unit\Model\Collection;
5+
namespace Undabot\SymfonyJsonApi\Tests\Unit\Model\Collection;
66

77
use Assert\AssertionFailedException;
88
use PHPUnit\Framework\TestCase;

tests/Unit/Model/CombinedResourceTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Undabot\JsonApi\Tests\Unit\Model\Resource;
5+
namespace Undabot\SymfonyJsonApi\Tests\Unit\Model\Resource;
66

77
use PHPUnit\Framework\TestCase;
88
use Undabot\JsonApi\Definition\Model\Link\LinkInterface;

tests/Unit/Model/Error/ValidationViolationErrorTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Undabot\JsonApi\Tests\Unit\Model\Error;
5+
namespace Undabot\SymfonyJsonApi\Tests\Unit\Model\Error;
66

77
use PHPUnit\Framework\MockObject\MockObject;
88
use PHPUnit\Framework\TestCase;

tests/Unit/Model/FlatResourceTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Undabot\JsonApi\Tests\Unit\Model\Resource;
5+
namespace Undabot\SymfonyJsonApi\Tests\Unit\Model\Resource;
66

77
use PHPUnit\Framework\TestCase;
88
use Undabot\JsonApi\Implementation\Factory\RelationshipDataFactory;

tests/Unit/Request/GetResourceCollectionRequestTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types=1);
44

5-
namespace Undabot\JsonApi\Tests\Unit\Request;
5+
namespace Undabot\SymfonyJsonApi\Tests\Unit\Request;
66

77
use PHPUnit\Framework\MockObject\MockObject;
88
use PHPUnit\Framework\TestCase;

0 commit comments

Comments
 (0)