public void CanConvert_False(Type t)
        {
            var obj = new SshToProcessConverter();

            Assert.IsNotNull(obj);
            var result = obj.CanConvert(t);

            Assert.IsFalse(result);
        }
        //[DataRow("", typeof(ICollection<ProcessBean>))]
        //[DataRow("", typeof(IList<ProcessBean>))]
        //[DataRow("", typeof(List<ProcessBean>))]
        //[DataRow("", typeof(Collection<ProcessBean>))]
        //[DataRow("", typeof(ProcessBean[]))]
        public void Read(string content, Type t)
        {
            var obj = new SshToProcessConverter();

            Assert.IsNotNull(obj);
            var result = obj.Read(content, t);



            Assert.IsInstanceOfType(result, t);
        }
        public void Create()
        {
            var obj = new SshToProcessConverter();

            Assert.IsNotNull(obj);
        }