amplify-swift/AmplifyPlugins/Auth/Tests/AWSCognitoAuthPluginUnitTests/Mocks/MockAuthHubEventBehavior.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
}
}