22 lines
571 B
C#
22 lines
571 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.ReadRequest_PCB(ref iHead);
|
|
}
|
|
}
|
|
} |