Add missing AbstractTestingBase extension

This commit is contained in:
DerFrZocker 2023-06-19 11:27:00 +02:00
parent a7c1393b43
commit 8b97f21525
No known key found for this signature in database
GPG key ID: 713F71FFFE1DDF91

View file

@ -5,10 +5,11 @@ import static org.junit.Assert.*;
import java.util.Collection;
import org.bukkit.entity.Player;
import org.bukkit.plugin.TestPlugin;
import org.bukkit.support.AbstractTestingBase;
import org.junit.Assert;
import org.junit.Test;
public class StandardMessengerTest {
public class StandardMessengerTest extends AbstractTestingBase {
public StandardMessenger getMessenger() {
return new StandardMessenger();
}