Example #1
0
	public function testTransforms() 
	{
		$trans = new Zend_InfoCard_Xml_Security_Transform();

		try {
			$trans->addTransform("foo");
			$this->fail("Expected Exception Not Thrown");
		} catch(Exception $e) {
			/* yay */
		}
		
		$this->assertTrue(is_array($trans->getTransformList()));
		
	}