aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/de/hysky/skyblocker/skyblock/dungeon/ThreeWeirdosTest.java
blob: 3772fd759ac68ff7029f014ed0f5482d1aaaddcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package de.hysky.skyblocker.skyblock.dungeon;

import de.hysky.skyblocker.utils.chat.ChatPatternListenerTest;
import org.junit.jupiter.api.Test;

class ThreeWeirdosTest extends ChatPatternListenerTest<ThreeWeirdos> {
    public ThreeWeirdosTest() {
        super(new ThreeWeirdos());
    }

    @Test
    void test1() {
        assertGroup("§e[NPC] §cBaxter§f: My chest doesn't have the reward. We are all telling the truth.", 1, "Baxter");
    }
    @Test
    void test2() {
        assertGroup("§e[NPC] §cHope§f: The reward isn't in any of our chests.", 1, "Hope");
    }
}