Examples of PreviewCache


Examples of org.sonar.core.preview.PreviewCache

import static org.mockito.Mockito.verify;

public class CleanPreviewAnalysisCacheTest {
  @Test
  public void clean_cache_on_startup() throws Exception {
    PreviewCache cache = mock(PreviewCache.class);
    CleanPreviewAnalysisCache cleaner = new CleanPreviewAnalysisCache(cache);

    cleaner.start();
    verify(cache).cleanAll();
    cleaner.stop();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.