public void OutputTypes()
        {
            transform.OutputTypes[0] = null;
            Assert.Null(transform.OutputTypes[0]);


            transform = new UnprotectedXmlLicenseTransform();
            Assert.NotNull(transform.OutputTypes[0]);
        }
        public void InputTypes()
        {
            // property does not return a clone
            transform.InputTypes[0] = null;
            Assert.Null(transform.InputTypes[0]);

            // it's not a static array
            transform = new UnprotectedXmlLicenseTransform();
            Assert.NotNull(transform.InputTypes[0]);
        }
 public XmlLicenseTransformTest()
 {
     transform = new UnprotectedXmlLicenseTransform();
 }