File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 2020 "require-dev" : {
2121 "illuminate/queue" : " ^5.1|^5.2|^5.3" ,
2222 "mockery/mockery" : " ^0.9.9" ,
23- "phpunit/phpunit" : " 4.* "
23+ "phpunit/phpunit" : " ^5.7 "
2424 },
2525 "autoload" : {
2626 "psr-4" : {
Original file line number Diff line number Diff line change 55use Mockery ;
66use GuzzleHttp \Client ;
77use GuzzleHttp \Psr7 \Response ;
8+ use PHPUnit \Framework \TestCase ;
89use Illuminate \Notifications \Notification ;
910use NotificationChannels \PagerDuty \PagerDutyChannel ;
1011use NotificationChannels \PagerDuty \PagerDutyMessage ;
1112use NotificationChannels \PagerDuty \Exceptions \ApiError ;
1213use NotificationChannels \PagerDuty \Exceptions \CouldNotSendNotification ;
1314
14- class ChannelTest extends \PHPUnit_Framework_TestCase
15+ class ChannelTest extends TestCase
1516{
1617 public function tearDown ()
1718 {
Original file line number Diff line number Diff line change 22
33namespace NotificationChannels \PagerDuty \Test ;
44
5+ use PHPUnit \Framework \TestCase ;
56use NotificationChannels \PagerDuty \PagerDutyMessage ;
67
7- class PagerDutyMessageTest extends \PHPUnit_Framework_TestCase
8+ class PagerDutyMessageTest extends TestCase
89{
910 /** @test */
1011 public function basic_message_has_all_values ()
You can’t perform that action at this time.
0 commit comments