public void DisposeTest()
        {
            SubsystemSession target = CreateSubsystemSession(); // TODO: Initialize to an appropriate value

            target.Dispose();
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
        internal virtual SubsystemSession CreateSubsystemSession()
        {
            // TODO: Instantiate an appropriate concrete class.
            SubsystemSession target = null;

            return(target);
        }
        public void SendDataTest()
        {
            SubsystemSession target = CreateSubsystemSession(); // TODO: Initialize to an appropriate value

            byte[] data = null;                                 // TODO: Initialize to an appropriate value
            target.SendData(data);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }