Skip to content

Commit cf765ad

Browse files
committed
review changes
1 parent de92ec6 commit cf765ad

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Diff for: tests/NotificationTests/NotificationCenterTest.php

+7-7
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ function () {
407407
);
408408
}
409409

410-
public function testclearNotificationsAndVerifyThatclearNotificationListenersWithArgsIsCalled()
410+
public function testClearNotificationsAndVerifyThatClearNotificationListenersWithArgsIsCalled()
411411
{
412412
# Mock NotificationCenter
413413
$this->notificationCenterMock = $this->getMockBuilder(NotificationCenter::class)
@@ -432,7 +432,7 @@ public function testclearNotificationsAndVerifyThatclearNotificationListenersWit
432432
$this->notificationCenterMock->clearNotifications(NotificationType::ACTIVATE);
433433
}
434434

435-
public function testclearNotificationListeners()
435+
public function testClearNotificationListeners()
436436
{
437437
// ensure that notifications length is zero for each notification type
438438
$this->notificationCenterObj->clearAllNotificationListeners();
@@ -528,7 +528,7 @@ function () {
528528
}
529529

530530

531-
public function testclearAllNotificationListeners()
531+
public function testClearAllNotificationListeners()
532532
{
533533
// using a new notification center object to avoid using the method being tested,
534534
// to reset notifications list
@@ -604,7 +604,7 @@ function () {
604604
$notificationCenterA->clearAllNotificationListeners();
605605
}
606606

607-
public function testcleanAllNotificationsAndVerifyThatclearAllNotificationListenersIsCalled()
607+
public function testCleanAllNotificationsAndVerifyThatClearAllNotificationListenersIsCalled()
608608
{
609609
# Mock NotificationCenter
610610
$this->notificationCenterMock = $this->getMockBuilder(NotificationCenter::class)
@@ -626,7 +626,7 @@ public function testcleanAllNotificationsAndVerifyThatclearAllNotificationListen
626626
$this->notificationCenterMock->cleanAllNotifications();
627627
}
628628

629-
public function testsendNotificationsGivenLessThanExpectedNumberOfArguments()
629+
public function testSendNotificationsGivenLessThanExpectedNumberOfArguments()
630630
{
631631
$clientObj = new FireNotificationTester;
632632
$this->notificationCenterObj->clearAllNotificationListeners();
@@ -651,7 +651,7 @@ public function testsendNotificationsGivenLessThanExpectedNumberOfArguments()
651651
$this->notificationCenterObj->sendNotifications(NotificationType::ACTIVATE, array("HelloWorld"));
652652
}
653653

654-
public function testsendNotificationsAndVerifyThatAllCallbacksWithoutArgsAreCalled()
654+
public function testSendNotificationsAndVerifyThatAllCallbacksWithoutArgsAreCalled()
655655
{
656656
$clientMock = $this->getMockBuilder(FireNotificationTester::class)
657657
->setMethods(array('decision_callback_no_args', 'decision_callback_no_args_2', 'track_callback_no_args'))
@@ -702,7 +702,7 @@ public function testsendNotificationsAndVerifyThatAllCallbacksWithoutArgsAreCall
702702
$this->notificationCenterObj->sendNotifications("abacada");
703703
}
704704

705-
public function testsendNotificationsAndVerifyThatAllCallbacksWithArgsAreCalled()
705+
public function testSendNotificationsAndVerifyThatAllCallbacksWithArgsAreCalled()
706706
{
707707
$clientMock = $this->getMockBuilder(FireNotificationTester::class)
708708
->setMethods(array('decision_callback_with_args', 'decision_callback_with_args_2', 'track_callback_no_args'))

0 commit comments

Comments
 (0)