1   /* Copyright 2004 Acegi Technology Pty Limited
2    *
3    * Licensed under the Apache License, Version 2.0 (the "License");
4    * you may not use this file except in compliance with the License.
5    * You may obtain a copy of the License at
6    *
7    *     http://www.apache.org/licenses/LICENSE-2.0
8    *
9    * Unless required by applicable law or agreed to in writing, software
10   * distributed under the License is distributed on an "AS IS" BASIS,
11   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12   * See the License for the specific language governing permissions and
13   * limitations under the License.
14   */
15  
16  package org.acegisecurity.acl.basic.cache;
17  
18  import junit.framework.TestCase;
19  
20  import org.acegisecurity.acl.basic.BasicAclEntry;
21  import org.acegisecurity.acl.basic.NamedEntityObjectIdentity;
22  import org.acegisecurity.acl.basic.SimpleAclEntry;
23  
24  
25  /***
26   * Tests {@link NullAclEntryCache}.
27   *
28   * @author Ben Alex
29   * @version $Id: NullAclEntryCacheTests.java,v 1.2 2005/11/17 00:55:47 benalex Exp $
30   */
31  public class NullAclEntryCacheTests extends TestCase {
32      //~ Constructors ===========================================================
33  
34      public NullAclEntryCacheTests() {
35          super();
36      }
37  
38      public NullAclEntryCacheTests(String arg0) {
39          super(arg0);
40      }
41  
42      //~ Methods ================================================================
43  
44      public final void setUp() throws Exception {
45          super.setUp();
46      }
47  
48      public static void main(String[] args) {
49          junit.textui.TestRunner.run(NullAclEntryCacheTests.class);
50      }
51  
52      public void testCacheOperation() throws Exception {
53          NullAclEntryCache cache = new NullAclEntryCache();
54          cache.putEntriesInCache(new BasicAclEntry[] {new SimpleAclEntry()});
55          cache.getEntriesFromCache(new NamedEntityObjectIdentity("not_used",
56                  "not_used"));
57      }
58  }