Add and expand unit tests for iPerl communication, refactor OptoHead methods, update log4net reference, and increment AssemblyVersion.
30 lines
570 B
C#
30 lines
570 B
C#
using JetBrains.Annotations;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using TBF.Rig.TestMethods.iPerlCommunication.iPerlHead;
|
|
|
|
namespace TBFTests.Rig.TestMethods.iPerlCommunication.iPerlHead
|
|
{
|
|
[TestClass]
|
|
[TestSubject(typeof(IperlHead))]
|
|
public class IperlHeadTest
|
|
{
|
|
|
|
[TestMethod]
|
|
public void VolumeLtrStart()
|
|
{
|
|
|
|
}
|
|
|
|
[TestMethod]
|
|
public void VolumeLtrEnd()
|
|
{
|
|
|
|
}
|
|
|
|
[TestMethod]
|
|
public void NoSamples()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |