mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
4079127e5d
git-svn-id: https://arducopter.googlecode.com/svn/trunk@1590 f9c3cf11-9bcb-44bc-f272-b75c42450872
23 lines
583 B
C#
23 lines
583 B
C#
using ArducopterConfigurator.PresentationModels;
|
|
using NUnit.Framework;
|
|
|
|
namespace ArducopterConfiguratorTest
|
|
{
|
|
[TestFixture]
|
|
public class CalibrationOffsetsDataVmTest : VmTestBase<CalibrationOffsetsDataVm>
|
|
{
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
sampleLineOfData = "0.100,0.200,0.300,0.400,0.500,0.600";
|
|
getCommand = "J";
|
|
setCommand = "I";
|
|
|
|
_mockComms = new MockComms();
|
|
_mockComms.Connect();
|
|
_vm = new CalibrationOffsetsDataVm(_mockComms);
|
|
}
|
|
|
|
}
|
|
} |