blob: 1ae1ac70cb9dca35a8d0f7000504bcb7e69b4ad7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
package me.xmrvizzy.skyblocker.skyblock.dwarven;
import me.xmrvizzy.skyblocker.chat.ChatListenerTest;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.*;
class FetchurTest extends ChatListenerTest<Fetchur> {
public FetchurTest() {
super(new Fetchur());
}
@Test
public void patternCaptures() {
assertEquals(getGroups("§e[NPC] Fetchur§f: its a hint")[1], "a hint");
}
}
|