mirror of
https://github.com/samsonjs/NotificationSmuggler.git
synced 2026-03-25 08:25:48 +00:00
13 lines
397 B
Swift
13 lines
397 B
Swift
import Foundation
|
|
@testable import NotificationSmuggler
|
|
import Testing
|
|
|
|
struct SmuggledTests {
|
|
@Test func notificationName() {
|
|
#expect(HitchhikersNotification.notificationName.rawValue == "NotificationSmuggler:HitchhikersNotification")
|
|
}
|
|
|
|
@Test func userInfoKey() {
|
|
#expect(HitchhikersNotification.userInfoKey == "NotificationSmuggler:HitchhikersNotification")
|
|
}
|
|
}
|