Merge branch 'master' of ../controller
[yangtools.git] / common / mockito-configuration / src / main / java / org / mockito / configuration / package-info.java
1 /*
2  * Copyright (c) 2016 Red Hat 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 /**
9  * Black magic Mockito utility.
10  *
11  * <p>This artifact is "black magic" because by merely depending on it (by its
12  * presence on the classpath, without ever using any of its classes), all usages
13  * of core Mockito.mock() in your existing tests will suddenly behave
14  * differently automagically all by themselves: They will throw
15  * ThrowsUnstubbedMethodException instead of returning null etc. as in default
16  * Mockito. (This "magic" is also the technical reason why this is package
17  * org.mockito.configuration instead of org.opendaylight.*)
18  *
19  * <p>TODO Point to the "other/new artifact with more sane Mockito helper, with
20  * explicit API.
21  *
22  * @see org.mockito.configuration.MockitoConfiguration
23  * @see org.mockito.configuration.IMockitoConfiguration
24  */
25 package org.mockito.configuration;