better performance in stickerbroswer

Emoji.sticker can return nil
added tests to measure .sticker perfomance
delete redundant stickerbrowserviewcontroller
This commit is contained in:
neon443
2025-10-29 22:48:26 +00:00
parent 495abb99b4
commit 4ab2ee8b98
8 changed files with 209 additions and 37 deletions

View File

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