@@ -407,7 +407,7 @@ function () {
407
407
);
408
408
}
409
409
410
- public function testclearNotificationsAndVerifyThatclearNotificationListenersWithArgsIsCalled ()
410
+ public function testClearNotificationsAndVerifyThatClearNotificationListenersWithArgsIsCalled ()
411
411
{
412
412
# Mock NotificationCenter
413
413
$ this ->notificationCenterMock = $ this ->getMockBuilder (NotificationCenter::class)
@@ -432,7 +432,7 @@ public function testclearNotificationsAndVerifyThatclearNotificationListenersWit
432
432
$ this ->notificationCenterMock ->clearNotifications (NotificationType::ACTIVATE );
433
433
}
434
434
435
- public function testclearNotificationListeners ()
435
+ public function testClearNotificationListeners ()
436
436
{
437
437
// ensure that notifications length is zero for each notification type
438
438
$ this ->notificationCenterObj ->clearAllNotificationListeners ();
@@ -528,7 +528,7 @@ function () {
528
528
}
529
529
530
530
531
- public function testclearAllNotificationListeners ()
531
+ public function testClearAllNotificationListeners ()
532
532
{
533
533
// using a new notification center object to avoid using the method being tested,
534
534
// to reset notifications list
@@ -604,7 +604,7 @@ function () {
604
604
$ notificationCenterA ->clearAllNotificationListeners ();
605
605
}
606
606
607
- public function testcleanAllNotificationsAndVerifyThatclearAllNotificationListenersIsCalled ()
607
+ public function testCleanAllNotificationsAndVerifyThatClearAllNotificationListenersIsCalled ()
608
608
{
609
609
# Mock NotificationCenter
610
610
$ this ->notificationCenterMock = $ this ->getMockBuilder (NotificationCenter::class)
@@ -626,7 +626,7 @@ public function testcleanAllNotificationsAndVerifyThatclearAllNotificationListen
626
626
$ this ->notificationCenterMock ->cleanAllNotifications ();
627
627
}
628
628
629
- public function testsendNotificationsGivenLessThanExpectedNumberOfArguments ()
629
+ public function testSendNotificationsGivenLessThanExpectedNumberOfArguments ()
630
630
{
631
631
$ clientObj = new FireNotificationTester ;
632
632
$ this ->notificationCenterObj ->clearAllNotificationListeners ();
@@ -651,7 +651,7 @@ public function testsendNotificationsGivenLessThanExpectedNumberOfArguments()
651
651
$ this ->notificationCenterObj ->sendNotifications (NotificationType::ACTIVATE , array ("HelloWorld " ));
652
652
}
653
653
654
- public function testsendNotificationsAndVerifyThatAllCallbacksWithoutArgsAreCalled ()
654
+ public function testSendNotificationsAndVerifyThatAllCallbacksWithoutArgsAreCalled ()
655
655
{
656
656
$ clientMock = $ this ->getMockBuilder (FireNotificationTester::class)
657
657
->setMethods (array ('decision_callback_no_args ' , 'decision_callback_no_args_2 ' , 'track_callback_no_args ' ))
@@ -702,7 +702,7 @@ public function testsendNotificationsAndVerifyThatAllCallbacksWithoutArgsAreCall
702
702
$ this ->notificationCenterObj ->sendNotifications ("abacada " );
703
703
}
704
704
705
- public function testsendNotificationsAndVerifyThatAllCallbacksWithArgsAreCalled ()
705
+ public function testSendNotificationsAndVerifyThatAllCallbacksWithArgsAreCalled ()
706
706
{
707
707
$ clientMock = $ this ->getMockBuilder (FireNotificationTester::class)
708
708
->setMethods (array ('decision_callback_with_args ' , 'decision_callback_with_args_2 ' , 'track_callback_no_args ' ))
0 commit comments