blob: 6a5dd2a734ecf9a498e9275fa373c4e170b002b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package me.xmrvizzy.skyblocker.skyblock.dungeon;
import me.xmrvizzy.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");
}
}
|