Skip to content

Instantly share code, notes, and snippets.

@BrianJVarley
Last active August 29, 2015 14:15
Show Gist options
  • Save BrianJVarley/9ceee3a8751c3d1eafcf to your computer and use it in GitHub Desktop.
Save BrianJVarley/9ceee3a8751c3d1eafcf to your computer and use it in GitHub Desktop.
using NUnit.Framework;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MyoSharp.Poses;
namespace MyoTestv4.Tests
{
[TestFixture]
class MyoDeviceTests
{
MyoTestv4.AdductionAbductionFlexion.MyoDeviceModel myo = new AdductionAbductionFlexion.MyoDeviceModel();
[Test]
public void TestMyoDevicePoseChanged()
{
//unit test the Myo device pose changed code
myo.PoseChanged += Myo_PoseChanged;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment