blob: 18c638c743ec668d22e82c7af1d37d07f50723c4 (
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.chat.ChatListenerTest;
import org.junit.jupiter.api.Test;
class ThreeWeirdosTest extends ChatListenerTest<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");
}
}
|