public void ReturnsCorrectValues(short ch, short rtu, short point)
            {
                var tmAddr = new TmAddr(ch, rtu, point);

                var(resultCh, resultRtu, resultPoint) = tmAddr.GetTupleShort();

                resultCh.Should().Be(ch);
                resultRtu.Should().Be(rtu);
                resultPoint.Should().Be(point);
            }