using System.Threading; using Moq; using NUnit.Framework; using Tello_Drone; namespace TelloDroneUnitTests { public class UdpClientWrapperFactoryTests { private Mock _mockConsoleLogger; [SetUp] public void SetUp() { _mockConsoleLogger = new Mock(); } [Test] public void CreateTest() { Assert.IsInstanceOf(typeof(UdpClientWrapper), new UdpClientWrapperFactory(_mockConsoleLogger.Object).Create()); } } }