refactor: reorganize solution for better multi-project support/management

This commit is contained in:
Stevan Freeborn
2025-05-25 18:38:52 -05:00
parent 00158dff04
commit a8de49cee3
111 changed files with 250 additions and 59 deletions
@@ -0,0 +1,17 @@
namespace StevesBot.Worker.Tests.Unit;
public class HeartbeatDiscordEventTests
{
[Theory]
[InlineData(null)]
[InlineData(1)]
public void Constructor_WhenCalled_ItShouldInitializeProperties(int? sequence)
{
var heartbeatEvent = new HeartbeatDiscordEvent(sequence);
heartbeatEvent.OpCode.Should().Be(1);
heartbeatEvent.Sequence.Should().Be(sequence);
heartbeatEvent.Type.Should().BeNull();
heartbeatEvent.Data.Should().BeNull();
}
}