Example #1
0
		public void InputTypes ()
		{
			// property does not return a clone
			transform.InputTypes [0] = null;
			Assert.IsNull (transform.InputTypes [0]);

			// it's not a static array
			transform = new UnprotectedXmlLicenseTransform ();
			Assert.IsNotNull (transform.InputTypes [0]);
		}
Example #2
0
        public void OutputTypes()
        {
            // property does not return a clone
            transform.OutputTypes [0] = null;
            Assert.IsNull(transform.OutputTypes [0], "#1");

            // it's not a static array
            transform = new UnprotectedXmlLicenseTransform();
            Assert.IsNotNull(transform.OutputTypes [0], "#2");
        }
Example #3
0
		public void SetUp ()
		{
			transform = new UnprotectedXmlLicenseTransform ();
		}
Example #4
0
 public void SetUp()
 {
     transform = new UnprotectedXmlLicenseTransform();
 }