Package org.castor.cache.simple

Examples of org.castor.cache.simple.NoCache


   
    public void test() {
        AbstractReaper reaper = new AbstractReaperMock();
       
        assertNull(reaper.getCache());
        Cache cache = new NoCache();
        reaper.setCache(cache);
        assertNotNull(reaper.getCache());
        assertTrue(cache == reaper.getCache());
    }
View Full Code Here

TOP

Related Classes of org.castor.cache.simple.NoCache

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.