aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/me/xmrvizzy/skyblocker/skyblock/dwarven/FetchurTest.java
blob: 35b8ab5836b1cc5ab721f283d21aaa74b1e53cd3 (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() {
        assertGroup("§e[NPC] Fetchur§f: its a hint", 1, "a hint");
    }
}