19 lines
347 B
Swift
19 lines
347 B
Swift
//
|
|
// Copyright 2024 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
//
|
|
|
|
import Foundation
|
|
|
|
#if TESTABLE_BUILD
|
|
|
|
open class AttachmentViewOnceManagerMock: AttachmentViewOnceManager {
|
|
|
|
public init() {}
|
|
|
|
open func prepareViewOnceContentForDisplay(_ message: TSMessage) -> ViewOnceContent? {
|
|
return nil
|
|
}
|
|
}
|
|
|
|
#endif
|