28 lines
549 B
Swift
28 lines
549 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
import Amplify
|
|
@testable import AWSCognitoAuthPlugin
|
|
|
|
class MockAuthHubEventBehavior: AuthHubEventBehavior {
|
|
func sendUserSignedInEvent() {
|
|
// Incomplete implementation
|
|
}
|
|
|
|
func sendUserSignedOutEvent() {
|
|
// Incomplete implementation
|
|
}
|
|
|
|
func sendUserDeletedEvent() {
|
|
// Incomplete implementation
|
|
}
|
|
|
|
func sendSessionExpiredEvent() {
|
|
// Incomplete implementation
|
|
}
|
|
}
|