tbf/TBFTests/Rig/RegisterReaders/iPerlASICReader/communication/OptoHeadTestTest.cs
Michal Buzik bcb33cde78 Store changes on Iperl
Add and expand unit tests for iPerl communication, refactor OptoHead methods, update log4net reference, and increment AssemblyVersion.
2026-03-03 14:34:30 +01:00

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();
}
}
}