public void GetStreamTest()
        {
            CarrierPlateRoutingToStreamConverter_Accessor target = new CarrierPlateRoutingToStreamConverter_Accessor();

            Assert.AreEqual<string>("0001", target.GetStream(CarrierPlateRouting.InsertIntoMagazine));
            Assert.AreEqual<string>("0002", target.GetStream(CarrierPlateRouting.Reject));
        }
        public void CheckParameterTest()
        {
            CarrierPlateRoutingToStreamConverter_Accessor target = new CarrierPlateRoutingToStreamConverter_Accessor();

            Assert.AreEqual<bool>(true, target.CheckParameter(CarrierPlateRouting.InsertIntoMagazine));
            Assert.AreEqual<bool>(true, target.CheckParameter(CarrierPlateRouting.Reject));
        }
 public void GetLengthTest()
 {
     CarrierPlateRoutingToStreamConverter_Accessor target = new CarrierPlateRoutingToStreamConverter_Accessor();
     Assert.AreEqual<int>(1, target.GetLength(CarrierPlateRouting.Reject));
 }
 public void CheckParameterThrowPlcException1Test()
 {
     CarrierPlateRoutingToStreamConverter_Accessor target = new CarrierPlateRoutingToStreamConverter_Accessor();
     target.CheckParameter(CarrierPlateRouting.Cleared);
 }