1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 package org.apache.commons.ognl.internal;
23
24 import org.apache.commons.ognl.internal.entry.CacheEntryFactory;
25 import org.apache.commons.ognl.test.objects.Root;
26 import org.junit.Test;
27
28 import java.lang.reflect.Constructor;
29 import java.util.Arrays;
30 import java.util.List;
31
32 import static junit.framework.Assert.assertEquals;
33 import static junit.framework.Assert.assertNotNull;
34
35 public class ConstructorCacheTest
36 {
37 private int count;
38 ClassCache<List<Constructor<?>>> cache = new ConcurrentHashMapClassCache<List<Constructor<?>>>(new CacheEntryFactory<Class<?>, List<Constructor<?>>>( )
39 {
40 public List<Constructor<?>> create( Class<?> key )
41 throws CacheException
42 {
43 count++;
44 return Arrays.<Constructor<?>>asList( key.getConstructors( ) );
45 }
46 });
47
48 @Test
49 public void testGet()
50 throws CacheException
51 {
52 List<Constructor<?>> constructors = cache.get( Root.class );
53 assertNotNull( constructors );
54 cache.get( Root.class );
55 assertEquals( 1, count);
56 }
57 }