d22e17865a3ec16495e5929a0c559a9f203d2fb8
[genius.git] / mdsalutil / mdsalutil-api / src / test / java / org / opendaylight / genius / utils / cache / CacheTestUtil.java
1 /*
2  * Copyright (c) 2017 Red Hat, 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.genius.utils.cache;
9
10 /**
11  * Utility for use in tests which cover code that still ;-( use the deprecated CacheUtil.
12  *
13  * @author Michael Vorburger
14  */
15 public final class CacheTestUtil {
16
17     private CacheTestUtil() {
18     }
19
20     @SuppressWarnings("deprecation")
21     public static void clearAllCaches() {
22         CacheUtil.MAP_OF_MAP.clear();
23     }
24 }