13
0
geforkt von Mirrors/Velocity

Fix Checkstyle issues

Dieser Commit ist enthalten in:
Andrew Steinborn 2019-04-21 02:56:29 -04:00
Ursprung dea7c215d7
Commit edcd13b532

Datei anzeigen

@ -1,6 +1,8 @@
package com.velocitypowered.api.proxy.messages; package com.velocitypowered.api.proxy.messages;
import static org.junit.jupiter.api.Assertions.*; import static com.velocitypowered.api.proxy.messages.MinecraftChannelIdentifier.create;
import static org.junit.jupiter.api.Assertions.assertAll;
import static org.junit.jupiter.api.Assertions.assertThrows;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
@ -8,20 +10,20 @@ class MinecraftChannelIdentifierTest {
@Test @Test
void createAllowsValidNamespaces() { void createAllowsValidNamespaces() {
MinecraftChannelIdentifier.create("minecraft", "brand"); create("minecraft", "brand");
} }
@Test @Test
void createAllowsEmptyName() { void createAllowsEmptyName() {
MinecraftChannelIdentifier.create("minecraft", ""); create("minecraft", "");
} }
@Test @Test
void createDisallowsNull() { void createDisallowsNull() {
assertAll( assertAll(
() -> assertThrows(IllegalArgumentException.class, () -> MinecraftChannelIdentifier.create(null, "")), () -> assertThrows(IllegalArgumentException.class, () -> create(null, "")),
() -> assertThrows(IllegalArgumentException.class, () -> MinecraftChannelIdentifier.create("", "")), () -> assertThrows(IllegalArgumentException.class, () -> create("", "")),
() -> assertThrows(IllegalArgumentException.class, () -> MinecraftChannelIdentifier.create("minecraft", null)) () -> assertThrows(IllegalArgumentException.class, () -> create("minecraft", null))
); );
} }
} }