Skip to content

Commit 2da27bb

Browse 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

File tree

55 files changed

+55
-55
lines changed

Some content is hidden

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

55 files changed

+55
-55
lines changed

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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy