mirror of https://github.com/ArduPilot/ardupilot
22 lines
549 B
C#
22 lines
549 B
C#
using ArducopterConfigurator.PresentationModels;
|
|
using NUnit.Framework;
|
|
|
|
namespace ArducopterConfiguratorTest
|
|
{
|
|
[TestFixture]
|
|
public class PositionHoldConfigVmTest : VmTestBase<PositionHoldConfigVm>
|
|
{
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
sampleLineOfData = "0.015,0.005,0.010,0.015,0.005,0.010,22.000,0.870";
|
|
getCommand = "D";
|
|
setCommand = "C";
|
|
|
|
_mockComms = new MockComms();
|
|
_vm = new PositionHoldConfigVm(_mockComms);
|
|
}
|
|
|
|
}
|
|
} |