Files
StickerSlack/StickerSlackTests/StickerSlackTests.swift
neon443 b738a06835 95% faster local image url getting
added localImageURL() test
2025-10-30 15:33:31 +00:00

27 lines
490 B
Swift

//
// StickerSlackTests.swift
// StickerSlackTests
//
// Created by neon443 on 29/10/2025.
//
import Testing
struct StickerSlackTests {
var hoarder = EmojiHoarder()
@Test func stickerConversion() async throws {
// Write your test here and use APIs like `#expect(...)` to check expected conditions.
for emoji in hoarder.emojis {
print(emoji.sticker)
}
}
@Test func localImageURL() async throws {
for emoji in hoarder.emojis {
print(emoji.localImageURL)
}
}
}