2022-07-27 10:57:16 +01:00
|
|
|
//
|
2022-08-11 08:54:24 +01:00
|
|
|
// Copyright 2022 New Vector Ltd
|
2022-07-27 10:57:16 +01:00
|
|
|
//
|
2022-08-11 08:54:24 +01:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
2022-07-27 10:57:16 +01:00
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
|
2022-11-21 19:37:13 +03:00
|
|
|
class MockNotificationManager: NotificationManagerProtocol {
|
|
|
|
// MARK: NotificationManagerProtocol
|
|
|
|
|
|
|
|
var isAvailable: Bool {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
|
|
|
|
weak var delegate: NotificationManagerDelegate?
|
|
|
|
|
|
|
|
func start() {
|
|
|
|
delegate?.authorizationStatusUpdated(self, granted: false)
|
2022-07-27 10:57:16 +01:00
|
|
|
}
|
2022-11-21 19:37:13 +03:00
|
|
|
|
2023-01-05 16:43:41 +00:00
|
|
|
func register(with deviceToken: Data) async -> Bool { false }
|
2022-11-21 19:37:13 +03:00
|
|
|
|
|
|
|
func registrationFailed(with error: Error) { }
|
|
|
|
|
|
|
|
func showLocalNotification(with title: String, subtitle: String?) { }
|
2022-07-27 10:57:16 +01:00
|
|
|
}
|