Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 2da27bb

Browse filesBrowse files
committed
feature #40550 [Notifier] Move abstract test cases to namespace (OskarStark)
This PR was merged into the 5.3-dev branch. Discussion ---------- [Notifier] Move abstract test cases to namespace | Q | A | ------------- | --- | Branch? | 5.x | Bug fix? | no (only fixes builds) | New feature? | yes (not sure about a changeling entry) | Deprecations? | no | Tickets | Fix #... <!-- prefix each issue number with "Fix #", no need to create an issue if none exist, explain below instead --> | License | MIT | Doc PR | no This enables BC promise for the abstract test classes, like for other ones. As we ignore current `/Tests` directory in `.gitattributes`, builds will fail if `symfony/notifier` is installed as dist. Commits ------- 33ba3c7 [Notifier] Move abstract test cases to namespace
2 parents 55bd7f4 + 33ba3c7 commit 2da27bb
Copy full SHA for 2da27bb

File tree

55 files changed

+55
-55
lines changed
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner

55 files changed

+55
-55
lines changed

‎src/Symfony/Component/Notifier/Bridge/AllMySms/Tests/AllMySmsTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/AllMySms/Tests/AllMySmsTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Component\Notifier\Bridge\AllMySms\Tests;
1313

1414
use Symfony\Component\Notifier\Bridge\AllMySms\AllMySmsTransportFactory;
15-
use Symfony\Component\Notifier\Tests\TransportFactoryTestCase;
15+
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
1616
use Symfony\Component\Notifier\Transport\TransportFactoryInterface;
1717

1818
final class AllMySmsTransportFactoryTest extends TransportFactoryTestCase

‎src/Symfony/Component/Notifier/Bridge/AllMySms/Tests/AllMySmsTransportTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/AllMySms/Tests/AllMySmsTransportTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use Symfony\Component\Notifier\Message\ChatMessage;
1616
use Symfony\Component\Notifier\Message\MessageInterface;
1717
use Symfony\Component\Notifier\Message\SmsMessage;
18-
use Symfony\Component\Notifier\Tests\TransportTestCase;
18+
use Symfony\Component\Notifier\Test\TransportTestCase;
1919
use Symfony\Component\Notifier\Transport\TransportInterface;
2020
use Symfony\Contracts\HttpClient\HttpClientInterface;
2121

‎src/Symfony/Component/Notifier/Bridge/Clickatell/Tests/ClickatellTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Clickatell/Tests/ClickatellTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Symfony\Component\Notifier\Bridge\Clickatell\Tests;
44

55
use Symfony\Component\Notifier\Bridge\Clickatell\ClickatellTransportFactory;
6-
use Symfony\Component\Notifier\Tests\TransportFactoryTestCase;
6+
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
77
use Symfony\Component\Notifier\Transport\TransportFactoryInterface;
88

99
class ClickatellTransportFactoryTest extends TransportFactoryTestCase

‎src/Symfony/Component/Notifier/Bridge/Discord/Tests/DiscordTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Discord/Tests/DiscordTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Component\Notifier\Bridge\Discord\Tests;
1313

1414
use Symfony\Component\Notifier\Bridge\Discord\DiscordTransportFactory;
15-
use Symfony\Component\Notifier\Tests\TransportFactoryTestCase;
15+
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
1616
use Symfony\Component\Notifier\Transport\TransportFactoryInterface;
1717

1818
final class DiscordTransportFactoryTest extends TransportFactoryTestCase

‎src/Symfony/Component/Notifier/Bridge/Discord/Tests/DiscordTransportTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Discord/Tests/DiscordTransportTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
use Symfony\Component\Notifier\Message\ChatMessage;
1919
use Symfony\Component\Notifier\Message\MessageInterface;
2020
use Symfony\Component\Notifier\Message\SmsMessage;
21-
use Symfony\Component\Notifier\Tests\TransportTestCase;
21+
use Symfony\Component\Notifier\Test\TransportTestCase;
2222
use Symfony\Component\Notifier\Transport\TransportInterface;
2323
use Symfony\Contracts\HttpClient\HttpClientInterface;
2424
use Symfony\Contracts\HttpClient\ResponseInterface;

‎src/Symfony/Component/Notifier/Bridge/Esendex/Tests/EsendexTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Esendex/Tests/EsendexTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Component\Notifier\Bridge\Esendex\Tests;
1313

1414
use Symfony\Component\Notifier\Bridge\Esendex\EsendexTransportFactory;
15-
use Symfony\Component\Notifier\Tests\TransportFactoryTestCase;
15+
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
1616
use Symfony\Component\Notifier\Transport\TransportFactoryInterface;
1717

1818
final class EsendexTransportFactoryTest extends TransportFactoryTestCase

‎src/Symfony/Component/Notifier/Bridge/Esendex/Tests/EsendexTransportTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Esendex/Tests/EsendexTransportTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
use Symfony\Component\Notifier\Message\ChatMessage;
1818
use Symfony\Component\Notifier\Message\MessageInterface;
1919
use Symfony\Component\Notifier\Message\SmsMessage;
20-
use Symfony\Component\Notifier\Tests\TransportTestCase;
20+
use Symfony\Component\Notifier\Test\TransportTestCase;
2121
use Symfony\Component\Notifier\Transport\TransportInterface;
2222
use Symfony\Contracts\HttpClient\HttpClientInterface;
2323
use Symfony\Contracts\HttpClient\ResponseInterface;

‎src/Symfony/Component/Notifier/Bridge/Firebase/Tests/FirebaseTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Firebase/Tests/FirebaseTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Component\Notifier\Bridge\Firebase\Tests;
1313

1414
use Symfony\Component\Notifier\Bridge\Firebase\FirebaseTransportFactory;
15-
use Symfony\Component\Notifier\Tests\TransportFactoryTestCase;
15+
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
1616
use Symfony\Component\Notifier\Transport\TransportFactoryInterface;
1717

1818
/**

‎src/Symfony/Component/Notifier/Bridge/Firebase/Tests/FirebaseTransportTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Firebase/Tests/FirebaseTransportTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use Symfony\Component\Notifier\Message\ChatMessage;
1616
use Symfony\Component\Notifier\Message\MessageInterface;
1717
use Symfony\Component\Notifier\Message\SmsMessage;
18-
use Symfony\Component\Notifier\Tests\TransportTestCase;
18+
use Symfony\Component\Notifier\Test\TransportTestCase;
1919
use Symfony\Component\Notifier\Transport\TransportInterface;
2020
use Symfony\Contracts\HttpClient\HttpClientInterface;
2121

‎src/Symfony/Component/Notifier/Bridge/FreeMobile/Tests/FreeMobileTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/FreeMobile/Tests/FreeMobileTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Component\Notifier\Bridge\FreeMobile\Tests;
1313

1414
use Symfony\Component\Notifier\Bridge\FreeMobile\FreeMobileTransportFactory;
15-
use Symfony\Component\Notifier\Tests\TransportFactoryTestCase;
15+
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
1616
use Symfony\Component\Notifier\Transport\TransportFactoryInterface;
1717

1818
final class FreeMobileTransportFactoryTest extends TransportFactoryTestCase

‎src/Symfony/Component/Notifier/Bridge/FreeMobile/Tests/FreeMobileTransportTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/FreeMobile/Tests/FreeMobileTransportTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use Symfony\Component\Notifier\Message\ChatMessage;
1616
use Symfony\Component\Notifier\Message\MessageInterface;
1717
use Symfony\Component\Notifier\Message\SmsMessage;
18-
use Symfony\Component\Notifier\Tests\TransportTestCase;
18+
use Symfony\Component\Notifier\Test\TransportTestCase;
1919
use Symfony\Component\Notifier\Transport\TransportInterface;
2020
use Symfony\Contracts\HttpClient\HttpClientInterface;
2121

‎src/Symfony/Component/Notifier/Bridge/GatewayApi/Tests/GatewayApiTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/GatewayApi/Tests/GatewayApiTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Symfony\Component\Notifier\Bridge\GatewayApi\Tests;
44

55
use Symfony\Component\Notifier\Bridge\GatewayApi\GatewayApiTransportFactory;
6-
use Symfony\Component\Notifier\Tests\TransportFactoryTestCase;
6+
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
77
use Symfony\Component\Notifier\Transport\TransportFactoryInterface;
88

99
/**

‎src/Symfony/Component/Notifier/Bridge/GatewayApi/Tests/GatewayApiTransportTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/GatewayApi/Tests/GatewayApiTransportTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use Symfony\Component\Notifier\Message\MessageInterface;
99
use Symfony\Component\Notifier\Message\SentMessage;
1010
use Symfony\Component\Notifier\Message\SmsMessage;
11-
use Symfony\Component\Notifier\Tests\TransportTestCase;
11+
use Symfony\Component\Notifier\Test\TransportTestCase;
1212
use Symfony\Component\Notifier\Transport\TransportInterface;
1313
use Symfony\Contracts\HttpClient\HttpClientInterface;
1414
use Symfony\Contracts\HttpClient\ResponseInterface;

‎src/Symfony/Component/Notifier/Bridge/Gitter/Tests/GitterTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Gitter/Tests/GitterTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Component\Notifier\Bridge\Gitter\Tests;
1313

1414
use Symfony\Component\Notifier\Bridge\Gitter\GitterTransportFactory;
15-
use Symfony\Component\Notifier\Tests\TransportFactoryTestCase;
15+
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
1616
use Symfony\Component\Notifier\Transport\TransportFactoryInterface;
1717

1818
/**

‎src/Symfony/Component/Notifier/Bridge/Gitter/Tests/GitterTransportTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Gitter/Tests/GitterTransportTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use Symfony\Component\Notifier\Message\ChatMessage;
1616
use Symfony\Component\Notifier\Message\MessageInterface;
1717
use Symfony\Component\Notifier\Message\SmsMessage;
18-
use Symfony\Component\Notifier\Tests\TransportTestCase;
18+
use Symfony\Component\Notifier\Test\TransportTestCase;
1919
use Symfony\Component\Notifier\Transport\TransportInterface;
2020
use Symfony\Contracts\HttpClient\HttpClientInterface;
2121

‎src/Symfony/Component/Notifier/Bridge/GoogleChat/Tests/GoogleChatTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/GoogleChat/Tests/GoogleChatTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Component\Notifier\Bridge\GoogleChat\Tests;
1313

1414
use Symfony\Component\Notifier\Bridge\GoogleChat\GoogleChatTransportFactory;
15-
use Symfony\Component\Notifier\Tests\TransportFactoryTestCase;
15+
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
1616
use Symfony\Component\Notifier\Transport\TransportFactoryInterface;
1717

1818
final class GoogleChatTransportFactoryTest extends TransportFactoryTestCase

‎src/Symfony/Component/Notifier/Bridge/GoogleChat/Tests/GoogleChatTransportTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/GoogleChat/Tests/GoogleChatTransportTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
use Symfony\Component\Notifier\Message\MessageOptionsInterface;
2222
use Symfony\Component\Notifier\Message\SmsMessage;
2323
use Symfony\Component\Notifier\Notification\Notification;
24-
use Symfony\Component\Notifier\Tests\TransportTestCase;
24+
use Symfony\Component\Notifier\Test\TransportTestCase;
2525
use Symfony\Component\Notifier\Transport\TransportInterface;
2626
use Symfony\Contracts\HttpClient\HttpClientInterface;
2727
use Symfony\Contracts\HttpClient\ResponseInterface;

‎src/Symfony/Component/Notifier/Bridge/Infobip/Tests/InfobipTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Infobip/Tests/InfobipTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Component\Notifier\Bridge\Infobip\Tests;
1313

1414
use Symfony\Component\Notifier\Bridge\Infobip\InfobipTransportFactory;
15-
use Symfony\Component\Notifier\Tests\TransportFactoryTestCase;
15+
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
1616
use Symfony\Component\Notifier\Transport\TransportFactoryInterface;
1717

1818
final class InfobipTransportFactoryTest extends TransportFactoryTestCase

‎src/Symfony/Component/Notifier/Bridge/Infobip/Tests/InfobipTransportTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Infobip/Tests/InfobipTransportTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use Symfony\Component\Notifier\Message\ChatMessage;
1616
use Symfony\Component\Notifier\Message\MessageInterface;
1717
use Symfony\Component\Notifier\Message\SmsMessage;
18-
use Symfony\Component\Notifier\Tests\TransportTestCase;
18+
use Symfony\Component\Notifier\Test\TransportTestCase;
1919
use Symfony\Component\Notifier\Transport\TransportInterface;
2020
use Symfony\Contracts\HttpClient\HttpClientInterface;
2121

‎src/Symfony/Component/Notifier/Bridge/Iqsms/Tests/IqsmsTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Iqsms/Tests/IqsmsTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Component\Notifier\Bridge\Iqsms\Tests;
1313

1414
use Symfony\Component\Notifier\Bridge\Iqsms\IqsmsTransportFactory;
15-
use Symfony\Component\Notifier\Tests\TransportFactoryTestCase;
15+
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
1616
use Symfony\Component\Notifier\Transport\TransportFactoryInterface;
1717

1818
final class IqsmsTransportFactoryTest extends TransportFactoryTestCase

‎src/Symfony/Component/Notifier/Bridge/Iqsms/Tests/IqsmsTransportTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Iqsms/Tests/IqsmsTransportTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use Symfony\Component\Notifier\Message\ChatMessage;
1616
use Symfony\Component\Notifier\Message\MessageInterface;
1717
use Symfony\Component\Notifier\Message\SmsMessage;
18-
use Symfony\Component\Notifier\Tests\TransportTestCase;
18+
use Symfony\Component\Notifier\Test\TransportTestCase;
1919
use Symfony\Component\Notifier\Transport\TransportInterface;
2020
use Symfony\Contracts\HttpClient\HttpClientInterface;
2121

‎src/Symfony/Component/Notifier/Bridge/LinkedIn/Tests/LinkedInTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/LinkedIn/Tests/LinkedInTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace Symfony\Component\Notifier\Bridge\LinkedIn\Tests;
44

55
use Symfony\Component\Notifier\Bridge\LinkedIn\LinkedInTransportFactory;
6-
use Symfony\Component\Notifier\Tests\TransportFactoryTestCase;
6+
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
77
use Symfony\Component\Notifier\Transport\TransportFactoryInterface;
88

99
final class LinkedInTransportFactoryTest extends TransportFactoryTestCase

‎src/Symfony/Component/Notifier/Bridge/LinkedIn/Tests/LinkedInTransportTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/LinkedIn/Tests/LinkedInTransportTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
use Symfony\Component\Notifier\Message\MessageOptionsInterface;
1212
use Symfony\Component\Notifier\Message\SmsMessage;
1313
use Symfony\Component\Notifier\Notification\Notification;
14-
use Symfony\Component\Notifier\Tests\TransportTestCase;
14+
use Symfony\Component\Notifier\Test\TransportTestCase;
1515
use Symfony\Component\Notifier\Transport\TransportInterface;
1616
use Symfony\Contracts\HttpClient\HttpClientInterface;
1717
use Symfony\Contracts\HttpClient\ResponseInterface;

‎src/Symfony/Component/Notifier/Bridge/Mattermost/Tests/MattermostTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Mattermost/Tests/MattermostTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Component\Notifier\Bridge\Mattermost\Tests;
1313

1414
use Symfony\Component\Notifier\Bridge\Mattermost\MattermostTransportFactory;
15-
use Symfony\Component\Notifier\Tests\TransportFactoryTestCase;
15+
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
1616
use Symfony\Component\Notifier\Transport\TransportFactoryInterface;
1717

1818
/**

‎src/Symfony/Component/Notifier/Bridge/Mattermost/Tests/MattermostTransportTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Mattermost/Tests/MattermostTransportTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use Symfony\Component\Notifier\Message\ChatMessage;
1616
use Symfony\Component\Notifier\Message\MessageInterface;
1717
use Symfony\Component\Notifier\Message\SmsMessage;
18-
use Symfony\Component\Notifier\Tests\TransportTestCase;
18+
use Symfony\Component\Notifier\Test\TransportTestCase;
1919
use Symfony\Component\Notifier\Transport\TransportInterface;
2020
use Symfony\Contracts\HttpClient\HttpClientInterface;
2121

‎src/Symfony/Component/Notifier/Bridge/Mercure/Tests/MercureTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Mercure/Tests/MercureTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
use Symfony\Bundle\MercureBundle\MercureBundle;
1717
use Symfony\Component\Mercure\PublisherInterface;
1818
use Symfony\Component\Notifier\Bridge\Mercure\MercureTransportFactory;
19-
use Symfony\Component\Notifier\Tests\TransportFactoryTestCase;
19+
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
2020
use Symfony\Component\Notifier\Transport\Dsn;
2121
use Symfony\Component\Notifier\Transport\TransportFactoryInterface;
2222
use Symfony\Contracts\Service\ServiceProviderInterface;

‎src/Symfony/Component/Notifier/Bridge/Mercure/Tests/MercureTransportTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Mercure/Tests/MercureTransportTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
use Symfony\Component\Notifier\Message\MessageInterface;
2525
use Symfony\Component\Notifier\Message\MessageOptionsInterface;
2626
use Symfony\Component\Notifier\Message\SmsMessage;
27-
use Symfony\Component\Notifier\Tests\TransportTestCase;
27+
use Symfony\Component\Notifier\Test\TransportTestCase;
2828
use Symfony\Component\Notifier\Transport\TransportInterface;
2929
use Symfony\Contracts\HttpClient\Exception\ServerExceptionInterface;
3030
use Symfony\Contracts\HttpClient\HttpClientInterface;

‎src/Symfony/Component/Notifier/Bridge/Mobyt/Tests/MobytTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Mobyt/Tests/MobytTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Component\Notifier\Bridge\Mobyt\Tests;
1313

1414
use Symfony\Component\Notifier\Bridge\Mobyt\MobytTransportFactory;
15-
use Symfony\Component\Notifier\Tests\TransportFactoryTestCase;
15+
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
1616
use Symfony\Component\Notifier\Transport\TransportFactoryInterface;
1717

1818
/**

‎src/Symfony/Component/Notifier/Bridge/Mobyt/Tests/MobytTransportTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Mobyt/Tests/MobytTransportTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
use Symfony\Component\Notifier\Message\ChatMessage;
1717
use Symfony\Component\Notifier\Message\MessageInterface;
1818
use Symfony\Component\Notifier\Message\SmsMessage;
19-
use Symfony\Component\Notifier\Tests\TransportTestCase;
19+
use Symfony\Component\Notifier\Test\TransportTestCase;
2020
use Symfony\Component\Notifier\Transport\TransportInterface;
2121
use Symfony\Contracts\HttpClient\HttpClientInterface;
2222

‎src/Symfony/Component/Notifier/Bridge/Nexmo/Tests/NexmoTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Nexmo/Tests/NexmoTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Component\Notifier\Bridge\Nexmo\Tests;
1313

1414
use Symfony\Component\Notifier\Bridge\Nexmo\NexmoTransportFactory;
15-
use Symfony\Component\Notifier\Tests\TransportFactoryTestCase;
15+
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
1616
use Symfony\Component\Notifier\Transport\TransportFactoryInterface;
1717

1818
final class NexmoTransportFactoryTest extends TransportFactoryTestCase

‎src/Symfony/Component/Notifier/Bridge/Nexmo/Tests/NexmoTransportTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Nexmo/Tests/NexmoTransportTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use Symfony\Component\Notifier\Message\ChatMessage;
1616
use Symfony\Component\Notifier\Message\MessageInterface;
1717
use Symfony\Component\Notifier\Message\SmsMessage;
18-
use Symfony\Component\Notifier\Tests\TransportTestCase;
18+
use Symfony\Component\Notifier\Test\TransportTestCase;
1919
use Symfony\Component\Notifier\Transport\TransportInterface;
2020
use Symfony\Contracts\HttpClient\HttpClientInterface;
2121

‎src/Symfony/Component/Notifier/Bridge/Octopush/Tests/OctopushTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Octopush/Tests/OctopushTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Component\Notifier\Bridge\Octopush\Tests;
1313

1414
use Symfony\Component\Notifier\Bridge\Octopush\OctopushTransportFactory;
15-
use Symfony\Component\Notifier\Tests\TransportFactoryTestCase;
15+
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
1616
use Symfony\Component\Notifier\Transport\TransportFactoryInterface;
1717

1818
final class OctopushTransportFactoryTest extends TransportFactoryTestCase

‎src/Symfony/Component/Notifier/Bridge/Octopush/Tests/OctopushTransportTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Octopush/Tests/OctopushTransportTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use Symfony\Component\Notifier\Message\ChatMessage;
1616
use Symfony\Component\Notifier\Message\MessageInterface;
1717
use Symfony\Component\Notifier\Message\SmsMessage;
18-
use Symfony\Component\Notifier\Tests\TransportTestCase;
18+
use Symfony\Component\Notifier\Test\TransportTestCase;
1919
use Symfony\Component\Notifier\Transport\TransportInterface;
2020
use Symfony\Contracts\HttpClient\HttpClientInterface;
2121

‎src/Symfony/Component/Notifier/Bridge/OvhCloud/Tests/OvhCloudTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/OvhCloud/Tests/OvhCloudTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Component\Notifier\Bridge\OvhCloud\Tests;
1313

1414
use Symfony\Component\Notifier\Bridge\OvhCloud\OvhCloudTransportFactory;
15-
use Symfony\Component\Notifier\Tests\TransportFactoryTestCase;
15+
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
1616
use Symfony\Component\Notifier\Transport\TransportFactoryInterface;
1717

1818
final class OvhCloudTransportFactoryTest extends TransportFactoryTestCase

‎src/Symfony/Component/Notifier/Bridge/OvhCloud/Tests/OvhCloudTransportTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/OvhCloud/Tests/OvhCloudTransportTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
use Symfony\Component\Notifier\Message\ChatMessage;
1818
use Symfony\Component\Notifier\Message\MessageInterface;
1919
use Symfony\Component\Notifier\Message\SmsMessage;
20-
use Symfony\Component\Notifier\Tests\TransportTestCase;
20+
use Symfony\Component\Notifier\Test\TransportTestCase;
2121
use Symfony\Component\Notifier\Transport\TransportInterface;
2222
use Symfony\Contracts\HttpClient\HttpClientInterface;
2323

‎src/Symfony/Component/Notifier/Bridge/RocketChat/Tests/RocketChatTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/RocketChat/Tests/RocketChatTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Component\Notifier\Bridge\RocketChat\Tests;
1313

1414
use Symfony\Component\Notifier\Bridge\RocketChat\RocketChatTransportFactory;
15-
use Symfony\Component\Notifier\Tests\TransportFactoryTestCase;
15+
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
1616
use Symfony\Component\Notifier\Transport\TransportFactoryInterface;
1717

1818
/**

‎src/Symfony/Component/Notifier/Bridge/RocketChat/Tests/RocketChatTransportTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/RocketChat/Tests/RocketChatTransportTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use Symfony\Component\Notifier\Message\ChatMessage;
1616
use Symfony\Component\Notifier\Message\MessageInterface;
1717
use Symfony\Component\Notifier\Message\SmsMessage;
18-
use Symfony\Component\Notifier\Tests\TransportTestCase;
18+
use Symfony\Component\Notifier\Test\TransportTestCase;
1919
use Symfony\Component\Notifier\Transport\TransportInterface;
2020
use Symfony\Contracts\HttpClient\HttpClientInterface;
2121

‎src/Symfony/Component/Notifier/Bridge/Sendinblue/Tests/SendinblueTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Sendinblue/Tests/SendinblueTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Component\Notifier\Bridge\Sendinblue\Tests;
1313

1414
use Symfony\Component\Notifier\Bridge\Sendinblue\SendinblueTransportFactory;
15-
use Symfony\Component\Notifier\Tests\TransportFactoryTestCase;
15+
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
1616
use Symfony\Component\Notifier\Transport\TransportFactoryInterface;
1717

1818
final class SendinblueTransportFactoryTest extends TransportFactoryTestCase

‎src/Symfony/Component/Notifier/Bridge/Sendinblue/Tests/SendinblueTransportTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Sendinblue/Tests/SendinblueTransportTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
use Symfony\Component\Notifier\Message\ChatMessage;
1818
use Symfony\Component\Notifier\Message\MessageInterface;
1919
use Symfony\Component\Notifier\Message\SmsMessage;
20-
use Symfony\Component\Notifier\Tests\TransportTestCase;
20+
use Symfony\Component\Notifier\Test\TransportTestCase;
2121
use Symfony\Component\Notifier\Transport\TransportInterface;
2222
use Symfony\Contracts\HttpClient\HttpClientInterface;
2323
use Symfony\Contracts\HttpClient\ResponseInterface;

‎src/Symfony/Component/Notifier/Bridge/Sinch/Tests/SinchTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Sinch/Tests/SinchTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Component\Notifier\Bridge\Sinch\Tests;
1313

1414
use Symfony\Component\Notifier\Bridge\Sinch\SinchTransportFactory;
15-
use Symfony\Component\Notifier\Tests\TransportFactoryTestCase;
15+
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
1616
use Symfony\Component\Notifier\Transport\TransportFactoryInterface;
1717

1818
final class SinchTransportFactoryTest extends TransportFactoryTestCase

‎src/Symfony/Component/Notifier/Bridge/Sinch/Tests/SinchTransportTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Sinch/Tests/SinchTransportTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use Symfony\Component\Notifier\Message\ChatMessage;
1616
use Symfony\Component\Notifier\Message\MessageInterface;
1717
use Symfony\Component\Notifier\Message\SmsMessage;
18-
use Symfony\Component\Notifier\Tests\TransportTestCase;
18+
use Symfony\Component\Notifier\Test\TransportTestCase;
1919
use Symfony\Component\Notifier\Transport\TransportInterface;
2020
use Symfony\Contracts\HttpClient\HttpClientInterface;
2121

‎src/Symfony/Component/Notifier/Bridge/Slack/Tests/SlackTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Slack/Tests/SlackTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
use Symfony\Component\Notifier\Bridge\Slack\SlackTransportFactory;
1515
use Symfony\Component\Notifier\Exception\InvalidArgumentException;
16-
use Symfony\Component\Notifier\Tests\TransportFactoryTestCase;
16+
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
1717
use Symfony\Component\Notifier\Transport\Dsn;
1818
use Symfony\Component\Notifier\Transport\TransportFactoryInterface;
1919

‎src/Symfony/Component/Notifier/Bridge/Slack/Tests/SlackTransportTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Slack/Tests/SlackTransportTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
use Symfony\Component\Notifier\Message\MessageOptionsInterface;
2323
use Symfony\Component\Notifier\Message\SmsMessage;
2424
use Symfony\Component\Notifier\Notification\Notification;
25-
use Symfony\Component\Notifier\Tests\TransportTestCase;
25+
use Symfony\Component\Notifier\Test\TransportTestCase;
2626
use Symfony\Component\Notifier\Transport\TransportInterface;
2727
use Symfony\Contracts\HttpClient\HttpClientInterface;
2828
use Symfony\Contracts\HttpClient\ResponseInterface;

‎src/Symfony/Component/Notifier/Bridge/Smsapi/Tests/SmsapiTransportFactoryTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Notifier/Bridge/Smsapi/Tests/SmsapiTransportFactoryTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace Symfony\Component\Notifier\Bridge\Smsapi\Tests;
1313

1414
use Symfony\Component\Notifier\Bridge\Smsapi\SmsapiTransportFactory;
15-
use Symfony\Component\Notifier\Tests\TransportFactoryTestCase;
15+
use Symfony\Component\Notifier\Test\TransportFactoryTestCase;
1616
use Symfony\Component\Notifier\Transport\TransportFactoryInterface;
1717

1818
final class SmsapiTransportFactoryTest extends TransportFactoryTestCase

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.