1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 15:22:53 +02:00

Unit tests

- Tested `setForeground(SimpleColor)`
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-24 15:52:47 +02:00
parent 9cd4b910ac
commit f56c6eb7dc

View File

@ -1116,6 +1116,9 @@ public class Client : Thread
string combination = bold(italics("Italiano Boldino")); string combination = bold(italics("Italiano Boldino"));
client.channelMessage(combination, "#birchwood"); client.channelMessage(combination, "#birchwood");
string foregroundRedtext = setForeground(SimpleColor.RED)~"This is red text";
client.channelMessage(foregroundRedtext, "#birchwood");
/** /**