mirror of
https://github.com/FancyInnovations/FancyPlugins.git
synced 2025-12-06 07:43:36 +00:00
packets: Add test for clear dialog packet
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package de.oliver.fancysitula.versions.v1_21_6.packets;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
public class ClientboundClearDialogPacketImplTest {
|
||||
|
||||
@Test
|
||||
void createPacket() {
|
||||
ClientboundClearDialogPacketImpl packet = new ClientboundClearDialogPacketImpl();
|
||||
assert packet.createPacket() != null : "Packet creation failed";
|
||||
// assert packet.equals(ClientboundClearDialogPacket.INSTANCE);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user