You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by rm...@apache.org on 2014/10/01 17:19:03 UTC

svn commit: r1628731 - in /openwebbeans/trunk/webbeans-tck/src/test/java: ./ org/ org/jboss/ org/jboss/cdi/ org/jboss/cdi/tck/ org/jboss/cdi/tck/tests/ org/jboss/cdi/tck/tests/implementation/ org/jboss/cdi/tck/tests/implementation/producer/ org/jboss/c...

Author: rmannibucau
Date: Wed Oct  1 15:19:03 2014
New Revision: 1628731

URL: http://svn.apache.org/r1628731
Log:
adding org/jboss/cdi/tck/tests/implementation/producer/method/definition/SpiderListProducer since it seems tck misses it, we have to check it is normal or not

Added:
    openwebbeans/trunk/webbeans-tck/src/test/java/
    openwebbeans/trunk/webbeans-tck/src/test/java/org/
    openwebbeans/trunk/webbeans-tck/src/test/java/org/jboss/
    openwebbeans/trunk/webbeans-tck/src/test/java/org/jboss/cdi/
    openwebbeans/trunk/webbeans-tck/src/test/java/org/jboss/cdi/tck/
    openwebbeans/trunk/webbeans-tck/src/test/java/org/jboss/cdi/tck/tests/
    openwebbeans/trunk/webbeans-tck/src/test/java/org/jboss/cdi/tck/tests/implementation/
    openwebbeans/trunk/webbeans-tck/src/test/java/org/jboss/cdi/tck/tests/implementation/producer/
    openwebbeans/trunk/webbeans-tck/src/test/java/org/jboss/cdi/tck/tests/implementation/producer/method/
    openwebbeans/trunk/webbeans-tck/src/test/java/org/jboss/cdi/tck/tests/implementation/producer/method/definition/
    openwebbeans/trunk/webbeans-tck/src/test/java/org/jboss/cdi/tck/tests/implementation/producer/method/definition/SpiderListProducer.java

Added: openwebbeans/trunk/webbeans-tck/src/test/java/org/jboss/cdi/tck/tests/implementation/producer/method/definition/SpiderListProducer.java
URL: http://svn.apache.org/viewvc/openwebbeans/trunk/webbeans-tck/src/test/java/org/jboss/cdi/tck/tests/implementation/producer/method/definition/SpiderListProducer.java?rev=1628731&view=auto
==============================================================================
--- openwebbeans/trunk/webbeans-tck/src/test/java/org/jboss/cdi/tck/tests/implementation/producer/method/definition/SpiderListProducer.java (added)
+++ openwebbeans/trunk/webbeans-tck/src/test/java/org/jboss/cdi/tck/tests/implementation/producer/method/definition/SpiderListProducer.java Wed Oct  1 15:19:03 2014
@@ -0,0 +1,14 @@
+package org.jboss.cdi.tck.tests.implementation.producer.method.definition;
+
+import javax.enterprise.inject.Produces;
+import java.util.ArrayList;
+import java.util.List;
+
+// org.jboss.cdi.tck.tests.implementation.producer.method.definition.ProducerMethodDefinitionTest.testTypeVariableReturnType()
+// seems to mean (comment) this class is missing
+public class SpiderListProducer extends GeneralListProducer<Spider> {
+    @Produces
+    public List<Spider> spiders() {
+        return new ArrayList<Spider>();
+    }
+}