mirror of
https://github.com/neon443/StickerSlack.git
synced 2026-03-11 05:19:13 +00:00
27 lines
490 B
Swift
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)
|
|
}
|
|
}
|
|
|
|
}
|