More Unit Tests

This commit is contained in:
2019-09-09 22:16:51 -06:00
parent 52a566eaf4
commit d99bce4d14
12 changed files with 296 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
using System.Dynamic;
namespace Tello_Drone
{
public interface IUdpClientWrapperFactory
{
IUdpClientWrapper Create();
}
}