mirror of https://github.com/ArduPilot/ardupilot
26 lines
440 B
C#
26 lines
440 B
C#
using ArducopterConfigurator.PresentationModels;
|
|
using NUnit.Framework;
|
|
|
|
namespace ArducopterConfiguratorTest
|
|
{
|
|
[TestFixture]
|
|
public class MotorCommandsVmTest
|
|
{
|
|
private MockComms _mockComms;
|
|
private MotorCommandsVm _vm;
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
|
|
}
|
|
|
|
// Todo
|
|
// test that it stops all motors on deactivate
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
} |