File tree 3 files changed +9
-5
lines changed
impl/src/test/java/com/sun/faces
3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -46,12 +46,12 @@ public URL getResource(String path) {
46
46
"com.sun.faces.mock.MockRenderKitFactory" );
47
47
48
48
new FacesContextImpl (externalContext , new LifecycleImpl ());
49
+ FacesContext .getCurrentInstance ().getAttributes ().put (RIConstants .CDI_BEAN_MANAGER , new MockBeanManager ());
49
50
new ApplicationImpl ();
50
51
51
52
applicationAssociate = (ApplicationAssociate ) externalContext .getApplicationMap ()
52
53
.get (RIConstants .FACES_PREFIX + "ApplicationAssociate" );
53
54
54
- FacesContext .getCurrentInstance ().getAttributes ().put (RIConstants .CDI_BEAN_MANAGER , new MockBeanManager ());
55
55
}
56
56
57
57
@ Test
Original file line number Diff line number Diff line change 16
16
17
17
package com .sun .faces .mock ;
18
18
19
+ import static java .util .Collections .emptySet ;
20
+
19
21
import java .lang .annotation .Annotation ;
20
22
import java .lang .reflect .Type ;
21
23
import java .util .List ;
@@ -71,12 +73,12 @@ public <T> CreationalContext<T> createCreationalContext(Contextual<T> contextual
71
73
72
74
@ Override
73
75
public Set <Bean <?>> getBeans (Type beanType , Annotation ... qualifiers ) {
74
- return null ;
76
+ return emptySet () ;
75
77
}
76
78
77
79
@ Override
78
80
public Set <Bean <?>> getBeans (String name ) {
79
- return null ;
81
+ return emptySet () ;
80
82
}
81
83
82
84
@ Override
@@ -156,12 +158,12 @@ public boolean isPassivatingScope(Class<? extends Annotation> annotationType) {
156
158
157
159
@ Override
158
160
public Set <Annotation > getInterceptorBindingDefinition (Class <? extends Annotation > bindingType ) {
159
- return null ;
161
+ return emptySet () ;
160
162
}
161
163
162
164
@ Override
163
165
public Set <Annotation > getStereotypeDefinition (Class <? extends Annotation > stereotype ) {
164
- return null ;
166
+ return emptySet () ;
165
167
}
166
168
167
169
@ Override
Original file line number Diff line number Diff line change 24
24
import java .util .Locale ;
25
25
import java .util .Map ;
26
26
27
+ import com .sun .faces .RIConstants ;
27
28
import com .sun .faces .context .ExceptionHandlerFactoryImpl ;
28
29
import com .sun .faces .renderkit .RenderKitUtils ;
29
30
@@ -62,6 +63,7 @@ public class MockFacesContext extends FacesContext {
62
63
public MockFacesContext () {
63
64
super ();
64
65
setCurrentInstance (this );
66
+ getAttributes ().put (RIConstants .CDI_BEAN_MANAGER , new MockBeanManager ());
65
67
}
66
68
67
69
public MockFacesContext (ExternalContext externalContext ) {
You can’t perform that action at this time.
0 commit comments