mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-14 04:38:30 -04:00
930b09b286
git-svn-id: https://arducopter.googlecode.com/svn/trunk@1219 f9c3cf11-9bcb-44bc-f272-b75c42450872
23 lines
446 B
C#
23 lines
446 B
C#
using ArducopterConfigurator.PresentationModels;
|
|
using NUnit.Framework;
|
|
|
|
namespace ArducopterConfiguratorTest
|
|
{
|
|
[TestFixture]
|
|
public class MotorCommandsVmTest
|
|
{
|
|
private FakeComms _fakeComms;
|
|
private MotorCommandsVm _vm;
|
|
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
_fakeComms = new FakeComms();
|
|
_vm = new MotorCommandsVm(_fakeComms);
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
} |