Hi folks!
I have tweaked the JSR-299 TCK and now a bit more tests pass.
I also found (and reported) a few bugs in the TCK, so for now, you should
checkout the TCK from
http://anonsvn.jboss.org/repos/weld/cdi-tck/trunk
and update the dependencyin openwebbeans-tck to 1.1.0-SNAPSHOT again.
Pete will fix the TCK on the weekend, but for now you need to apply the patch I
added.
LieGrue,
strub
__________________________________________________
Do You Yahoo!?
Sie sind Spam leid? Yahoo! Mail verfügt über einen herausragenden Schutz gegen
Massenmails.
http://mail.yahoo.com
Index: impl/src/main/java/org/jboss/jsr299/tck/tests/context/passivating/KokkolaInterceptor.java
===================================================================
--- impl/src/main/java/org/jboss/jsr299/tck/tests/context/passivating/KokkolaInterceptor.java (Revision 5190)
+++ impl/src/main/java/org/jboss/jsr299/tck/tests/context/passivating/KokkolaInterceptor.java (Arbeitskopie)
@@ -9,7 +9,7 @@
public class KokkolaInterceptor implements Serializable
{
@AroundInvoke
- public Object intercept(InvocationContext context)
+ public Object intercept(InvocationContext context) throws Exception
{
// do nothing
return null;
Index: impl/src/main/java/org/jboss/jsr299/tck/tests/context/dependent/TransactionalInterceptor.java
===================================================================
--- impl/src/main/java/org/jboss/jsr299/tck/tests/context/dependent/TransactionalInterceptor.java (Revision 5190)
+++ impl/src/main/java/org/jboss/jsr299/tck/tests/context/dependent/TransactionalInterceptor.java (Arbeitskopie)
@@ -18,7 +18,7 @@
return ctx.proceed();
}
- @PreDestroy public void destroy()
+ @PreDestroy public void destroy(InvocationContext ctx)
{
destroyed = true;
}