BUG-994: improve object cache
[yangtools.git] / common / object-cache-api / src / test / java / org / opendaylight / yangtools / objcache / spi / CacheFactoryTest.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.objcache.spi;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertNotNull;
12
13 import org.junit.Test;
14 import org.opendaylight.yangtools.objcache.ObjectCache;
15 import org.opendaylight.yangtools.objcache.ObjectCacheFactory;
16
17 public class CacheFactoryTest {
18
19     @Test
20     public void testInvalidEnvironment() {
21         final ObjectCache oc = ObjectCacheFactory.getObjectCache(String.class);
22
23         assertNotNull(oc);
24         assertEquals(NoopObjectCache.class, oc.getClass());
25     }
26 }