1 22 package org.jboss.test.aop; 23 24 import java.util.Properties ; 25 26 import org.jboss.test.AbstractTestDelegate; 27 28 33 public class AOPTestDelegate extends AbstractTestDelegate 34 { 35 Properties systemProps; 36 public AOPTestDelegate(Class clazz) 37 { 38 super(clazz); 40 systemProps = (Properties )System.getProperties().clone(); 41 } 42 43 public Properties getSystemProperties() 44 { 45 return systemProps; 46 } 47 } 48 | Popular Tags |