[seam-commits] Seam SVN: r13659 - in modules/xml/trunk/impl/src/test: resources/org/jboss/seam/xml/test/method and 1 other directory.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Fri Aug 27 20:21:50 EDT 2010
Author: swd847
Date: 2010-08-27 20:21:50 -0400 (Fri, 27 Aug 2010)
New Revision: 13659
Added:
modules/xml/trunk/impl/src/test/java/org/jboss/seam/xml/test/method/Qualifier3.java
Modified:
modules/xml/trunk/impl/src/test/resources/org/jboss/seam/xml/test/method/method-beans.xml
Log:
fix tests
Added: modules/xml/trunk/impl/src/test/java/org/jboss/seam/xml/test/method/Qualifier3.java
===================================================================
--- modules/xml/trunk/impl/src/test/java/org/jboss/seam/xml/test/method/Qualifier3.java (rev 0)
+++ modules/xml/trunk/impl/src/test/java/org/jboss/seam/xml/test/method/Qualifier3.java 2010-08-28 00:21:50 UTC (rev 13659)
@@ -0,0 +1,31 @@
+/*
+ * JBoss, Home of Professional Open Source
+ * Copyright 2010, Red Hat, Inc., and individual contributors
+ * by the @authors tag. See the copyright.txt 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.seam.xml.test.method;
+
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+
+ at Retention(RetentionPolicy.RUNTIME)
+public @interface Qualifier3
+{
+
+}
Modified: modules/xml/trunk/impl/src/test/resources/org/jboss/seam/xml/test/method/method-beans.xml
===================================================================
--- modules/xml/trunk/impl/src/test/resources/org/jboss/seam/xml/test/method/method-beans.xml 2010-08-28 00:00:46 UTC (rev 13658)
+++ modules/xml/trunk/impl/src/test/resources/org/jboss/seam/xml/test/method/method-beans.xml 2010-08-28 00:21:50 UTC (rev 13659)
@@ -10,7 +10,11 @@
<test:Qualifier2>
<Qualifier />
</test:Qualifier2>
-
+
+ <test:Qualifier3>
+ <Qualifier />
+ </test:Qualifier3>
+
<test:MethodBean>
<test:method>
<Produces />
@@ -48,7 +52,7 @@
</test:method>
<test:method>
<Produces />
- <test:Qualifier2 />
+ <test:Qualifier3 />
<parameters>
<Instance>
<test:Qualifier2 />
More information about the seam-commits
mailing list