[jboss-cvs] JBossAS SVN: r102718 - projects/jboss-reflect/trunk/src/test/java/org/jboss/test/beaninfo/test.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Mar 22 08:40:40 EDT 2010


Author: kabir.khan at jboss.com
Date: 2010-03-22 08:40:40 -0400 (Mon, 22 Mar 2010)
New Revision: 102718

Added:
   projects/jboss-reflect/trunk/src/test/java/org/jboss/test/beaninfo/test/JavassistFieldAccessRestrictionTestCase.java
   projects/jboss-reflect/trunk/src/test/java/org/jboss/test/beaninfo/test/JavassistMethodAccessRestrictionTestCase.java
Log:
[JBREFLECT-107][JBREFLECT-2] More commented out bean info javassist tests

Added: projects/jboss-reflect/trunk/src/test/java/org/jboss/test/beaninfo/test/JavassistFieldAccessRestrictionTestCase.java
===================================================================
--- projects/jboss-reflect/trunk/src/test/java/org/jboss/test/beaninfo/test/JavassistFieldAccessRestrictionTestCase.java	                        (rev 0)
+++ projects/jboss-reflect/trunk/src/test/java/org/jboss/test/beaninfo/test/JavassistFieldAccessRestrictionTestCase.java	2010-03-22 12:40:40 UTC (rev 102718)
@@ -0,0 +1,43 @@
+/*
+* JBoss, Home of Professional Open Source.
+* Copyright 2006, Red Hat Middleware LLC, and individual contributors
+* as indicated by the @author tags. See the copyright.txt file in the
+* distribution for a full listing of individual contributors. 
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+*/ 
+package org.jboss.test.beaninfo.test;
+
+import junit.framework.Test;
+
+/**
+ * 
+ * @author <a href="kabir.khan at jboss.com">Kabir Khan</a>
+ * @version $Revision: 1.1 $
+ */
+public class JavassistFieldAccessRestrictionTestCase extends FieldAccessRestrictionTestCase
+{
+   public JavassistFieldAccessRestrictionTestCase(String name)
+   {
+      super(name);
+      setJavassistConfiguration();
+   }
+
+   public static Test suite()
+   {
+      return suite(JavassistFieldAccessRestrictionTestCase.class);
+   }
+}

Added: projects/jboss-reflect/trunk/src/test/java/org/jboss/test/beaninfo/test/JavassistMethodAccessRestrictionTestCase.java
===================================================================
--- projects/jboss-reflect/trunk/src/test/java/org/jboss/test/beaninfo/test/JavassistMethodAccessRestrictionTestCase.java	                        (rev 0)
+++ projects/jboss-reflect/trunk/src/test/java/org/jboss/test/beaninfo/test/JavassistMethodAccessRestrictionTestCase.java	2010-03-22 12:40:40 UTC (rev 102718)
@@ -0,0 +1,43 @@
+/*
+* JBoss, Home of Professional Open Source.
+* Copyright 2006, Red Hat Middleware LLC, and individual contributors
+* as indicated by the @author tags. See the copyright.txt file in the
+* distribution for a full listing of individual contributors. 
+*
+* This is free software; you can redistribute it and/or modify it
+* under the terms of the GNU Lesser General Public License as
+* published by the Free Software Foundation; either version 2.1 of
+* the License, or (at your option) any later version.
+*
+* This software is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+* Lesser General Public License for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this software; if not, write to the Free
+* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
+*/ 
+package org.jboss.test.beaninfo.test;
+
+import junit.framework.Test;
+
+/**
+ * 
+ * @author <a href="kabir.khan at jboss.com">Kabir Khan</a>
+ * @version $Revision: 1.1 $
+ */
+public class JavassistMethodAccessRestrictionTestCase extends MethodAccessRestrictionTestCase
+{
+   public JavassistMethodAccessRestrictionTestCase(String name)
+   {
+      super(name);
+      setJavassistConfiguration();
+   }
+
+   public static Test suite()
+   {
+      return suite(JavassistMethodAccessRestrictionTestCase.class);
+   }
+}




More information about the jboss-cvs-commits mailing list