packets: Add test for clear dialog packet

This commit is contained in:
Oliver
2025-05-31 09:04:24 +02:00
committed by Oliver
parent e5c00d0c4e
commit 6014fe3c70

View File

@@ -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);
}
}