@@ -16,12 +16,12 @@ extension UserNotificationClient {
1616 /// 1. Start with this failing object.
1717 /// 2. Override only those properties that should used in the test with your test logic.
1818 /// 3. Calling any other property will fail the test thus pointing to a non desired dependency usage.
19- public static let failing = Self . init ( addRequest: XCTUnimplemented ( " \( Self . self) .addRequest " , placeholder : Void ( ) ) ,
20- delegate: XCTUnimplemented ( " \( Self . self) .delegate " , placeholder: . fatalFail) ,
21- getAuthorizationStatus: XCTUnimplemented ( " \( Self . self) .getAuthorizationStatus " , placeholder: . denied) ,
22- removeDeliveredNotifications: XCTUnimplemented ( " \( Self . self) .removeDeliveredNotifications " , placeholder: Void ( ) ) ,
23- removePendingRequests: XCTUnimplemented ( " \( Self . self) .removePendingRequests " , placeholder: Void ( ) ) ,
24- requestAuthorization: XCTUnimplemented ( " \( Self . self) .requestAuthorization " , placeholder: false ) )
19+ public static let failing = Self . init ( addRequest: unimplemented ( " \( Self . self) .addRequest " ) ,
20+ delegate: unimplemented ( " \( Self . self) .delegate " , placeholder: . fatalFail) ,
21+ getAuthorizationStatus: unimplemented ( " \( Self . self) .getAuthorizationStatus " , placeholder: . denied) ,
22+ removeDeliveredNotifications: unimplemented ( " \( Self . self) .removeDeliveredNotifications " , placeholder: Void ( ) ) ,
23+ removePendingRequests: unimplemented ( " \( Self . self) .removePendingRequests " , placeholder: Void ( ) ) ,
24+ requestAuthorization: unimplemented ( " \( Self . self) .requestAuthorization " , placeholder: false ) )
2525
2626 /// Empty mocks object
2727 ///
0 commit comments