1
0
Fork 0
csbot/csbotTests/MessageTests.cs

17 lines
370 B
C#
Raw Permalink Normal View History

2024-02-08 09:21:36 +01:00
using System;
using Xunit;
using Csbot.Core;
namespace CsbotTests
{
public class MessageTests
{
[Fact]
public void NewMessage_StandardScenario_PRIVMSG()
{
Message msg = new Message(":nicolapcweek94!test@lol PRIVMSG #test :test lol", '%');
Assert.Equal("PRIVMSG", msg.action);
}
}
}