use of org.spongepowered.api.text.translation.FixedTranslation in project SpongeAPI by SpongePowered.
the class TestTextFactoryTest method testToPlainTranslatables.
@Test
public void testToPlainTranslatables() {
Text testText = Text.of(new FixedTranslation("This is a translated %s"), Text.of("string"));
assertEquals("This is a translated string", testText.toPlain());
}
Aggregations