--- /dev/null
+package net.pterodactylus.fcp;
+
+import org.junit.Test;
+
+import static org.hamcrest.MatcherAssert.assertThat;
+import static org.hamcrest.Matchers.anEmptyMap;
+import static org.hamcrest.Matchers.equalTo;
+
+public class ShutdownTest {
+
+ @Test
+ public void shutdownMessageHasCorrectName() {
+ assertThat(shutdown.getName(), equalTo("Shutdown"));
+ }
+
+ @Test
+ public void shutdownMessageHasNoFields() {
+ assertThat(shutdown.getFields(), anEmptyMap());
+ }
+
+ private final Shutdown shutdown = new Shutdown();
+
+}