Beispiel #1
0
        public void should_instantiate_interchange_control_trailer_with_properties()
        {
            var trailer = new InterchangeControlTrailer()
            {
                IncludedFunctionalGroups = 10,
                InterchangeControlNumber = "1"
            };

            trailer.Value.Should().Be("IEA*10*1");
        }
Beispiel #2
0
 public void Setup()
 {
     _Trailer = new InterchangeControlTrailer(_InterchangeControlString);
 }