Last active
August 29, 2015 14:15
-
-
Save BrianJVarley/9ceee3a8751c3d1eafcf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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