// [Theory]
 // [InlineData(-1)]
 // [InlineData(0)]
 // [InlineData(1)]
 public void TestOnlineConnection()
 {
     //This does not use Mocks and will try to contact the server directly
     MQTTMessageLogic.TestMQTTConnectionWithPublicBroker();
     Console.WriteLine("This line will print in the console out");
     // System.Diagnostics.Debug.WriteLine("This line will be shown in debug mode");
     // Assert.True(false);
     // Assert.False(result, $"{value} should not be prime");
 }
 public MQTTServiceTest()
 {
     messageLogic = new MQTTMessageLogic();
 }