mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-03-30 16:26:24 +02:00
32 lines
1.1 KiB
Java
32 lines
1.1 KiB
Java
package com.gmail.nossr50.util.text;
|
|
|
|
import net.kyori.adventure.text.TextComponent;
|
|
import net.kyori.adventure.text.format.NamedTextColor;
|
|
import org.junit.jupiter.api.Assertions;
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
/**
|
|
* This Unit Test checks if Adventure was set up correctly and works as expected.
|
|
* Normally we can rely on this to be the case. However sometimes our dependencies
|
|
* lack so far behind that things stop working correctly.
|
|
* This test ensures that basic functionality is guaranteed to work as we would expect.
|
|
*
|
|
* See https://github.com/mcMMO-Dev/mcMMO/pull/4446
|
|
*
|
|
*/
|
|
public class TextUtilsTest {
|
|
|
|
@Test
|
|
public void testColorizeText() {
|
|
String inputText = "&4This text should be red.";
|
|
|
|
/*
|
|
* If this method raises an exception, we know Adventure is not set up correctly.
|
|
* This will also make the test fail and warn us about it.
|
|
*/
|
|
TextComponent component = TextUtils.colorizeText(inputText);
|
|
|
|
Assertions.assertEquals(NamedTextColor.DARK_RED, component.color(), "Looks like Adventure is not working correctly.");
|
|
}
|
|
}
|