Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- using System.Net.Sockets;
- using System.Threading.Tasks;
- using Microsoft.VisualStudio.TestTools.UnitTesting;
- using MQTTnet.Client;
- using MQTTnet.Exceptions;
-
- namespace MQTTnet.Core.Tests
- {
- [TestClass]
- public class MqttClientTests
- {
-
- [TestMethod]
- public async Task ClientDisconnectException()
- {
- var factory = new MqttFactory();
- var client = factory.CreateMqttClient();
-
- var exceptionIsCorrect = false;
- client.Disconnected += (s, e) =>
- {
- exceptionIsCorrect = e.Exception is MqttCommunicationException c && c.InnerException is SocketException;
- };
-
- try
- {
- await client.ConnectAsync(new MqttClientOptionsBuilder().WithTcpServer("wrong-server").Build());
- }
- catch
- {
- }
-
- Assert.IsTrue(exceptionIsCorrect);
- }
- }
- }
|