Repository: deltaspike Updated Branches: refs/heads/master 94b6f181e -> 2f31242a0
DELTASPIKE-1051 AbstractMethodError with ApplicationScoped repository - tests to replicate the issue Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/2f31242a Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/2f31242a Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/2f31242a Branch: refs/heads/master Commit: 2f31242a01afdaf416060d7bb36a10efe89458f3 Parents: 94b6f18 Author: Thomas Andraschko <[email protected]> Authored: Mon Dec 28 19:10:15 2015 +0100 Committer: Thomas Andraschko <[email protected]> Committed: Mon Dec 28 19:10:15 2015 +0100 ---------------------------------------------------------------------- .../partialbean/uc011/ScopedPartialBeanTest.java | 2 +- .../partialbean/uc011/TestPartialBeanHandler.java | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2f31242a/deltaspike/modules/partial-bean/impl/src/test/java/org/apache/deltaspike/test/core/api/partialbean/uc011/ScopedPartialBeanTest.java ---------------------------------------------------------------------- diff --git a/deltaspike/modules/partial-bean/impl/src/test/java/org/apache/deltaspike/test/core/api/partialbean/uc011/ScopedPartialBeanTest.java b/deltaspike/modules/partial-bean/impl/src/test/java/org/apache/deltaspike/test/core/api/partialbean/uc011/ScopedPartialBeanTest.java index c40c991..a30eaa1 100644 --- a/deltaspike/modules/partial-bean/impl/src/test/java/org/apache/deltaspike/test/core/api/partialbean/uc011/ScopedPartialBeanTest.java +++ b/deltaspike/modules/partial-bean/impl/src/test/java/org/apache/deltaspike/test/core/api/partialbean/uc011/ScopedPartialBeanTest.java @@ -54,7 +54,7 @@ public class ScopedPartialBeanTest } @Test - @Ignore("Test to demonstrate a weld proxy issue") + @Ignore("Test to demonstrate WELD-2084") public void testPartialBeanWithApplicationScope() throws Throwable { CustomerRepository repository = BeanProvider.getContextualReference(CustomerRepository.class); http://git-wip-us.apache.org/repos/asf/deltaspike/blob/2f31242a/deltaspike/modules/partial-bean/impl/src/test/java/org/apache/deltaspike/test/core/api/partialbean/uc011/TestPartialBeanHandler.java ---------------------------------------------------------------------- diff --git a/deltaspike/modules/partial-bean/impl/src/test/java/org/apache/deltaspike/test/core/api/partialbean/uc011/TestPartialBeanHandler.java b/deltaspike/modules/partial-bean/impl/src/test/java/org/apache/deltaspike/test/core/api/partialbean/uc011/TestPartialBeanHandler.java index 9af7484..35b8102 100644 --- a/deltaspike/modules/partial-bean/impl/src/test/java/org/apache/deltaspike/test/core/api/partialbean/uc011/TestPartialBeanHandler.java +++ b/deltaspike/modules/partial-bean/impl/src/test/java/org/apache/deltaspike/test/core/api/partialbean/uc011/TestPartialBeanHandler.java @@ -1,3 +1,21 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ package org.apache.deltaspike.test.core.api.partialbean.uc011; import org.apache.deltaspike.test.core.api.partialbean.shared.TestPartialBeanBinding;
