/* * See the NOTICE file distributed with this work for additional * information regarding copyright ownership. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package com.xpn.xwiki.test.mockito; import org.mockito.ArgumentMatcher; import org.mockito.internal.matchers.Equality; import org.xwiki.cache.config.CacheConfiguration; /** * Match a {@link CacheConfiguration} parameter with an id. * * @version $Id: d318453a9aab484a49f5fb0b5d595f2e6871f7a6 $ * @since 9.0RC1 */ public class CacheConfigurationMatcher implements ArgumentMatcher<CacheConfiguration> { private final String id; public CacheConfigurationMatcher(String id) { this.id = id; } @Override public boolean matches(CacheConfiguration argument) { return argument != null && Equality.areEqual(this.id, argument.getConfigurationId()); } }