Add and expand unit tests for iPerl communication, refactor OptoHead methods, update log4net reference, and increment AssemblyVersion.
23 lines
627 B
C#
23 lines
627 B
C#
using JetBrains.Annotations;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using TBF.Rig.TestMethods.iPerlCommunication.communication;
|
|
using TBF.Rig.TestMethods.iPerlCommunication.iPerlHead;
|
|
|
|
|
|
namespace TBFTests.Rig.RegisterReaders.iPerlASICReader.communication
|
|
{
|
|
[TestClass]
|
|
[TestSubject(typeof(OptoHeadTest))]
|
|
public class OptoHeadTestTest
|
|
{
|
|
|
|
[TestMethod]
|
|
public void ReadRequest_PCB_Test()
|
|
{
|
|
IperlHead iHead = new IperlHead();
|
|
OptoHeadTest optoHeadTest = new OptoHeadTest(iHead);
|
|
|
|
optoHeadTest.ReadRequest_PCB();
|
|
}
|
|
}
|
|
} |