1. Project Clover database Tue Dec 20 2016 21:24:09 CET
  2. Package com.xpn.xwiki.test.mockito

File OldcoreMatchers.java

 

Coverage histogram

../../../../../img/srcFileCovDistChart8.png
54% of files have more coverage

Code metrics

0
4
4
1
71
26
4
1
1
4
1

Classes

Class Line # Actions
OldcoreMatchers 37 4 0% 4 2
0.7575%
 

Contributing tests

This file is covered by 1 test. .

Source view

1    /*
2    * See the NOTICE file distributed with this work for additional
3    * information regarding copyright ownership.
4    *
5    * This is free software; you can redistribute it and/or modify it
6    * under the terms of the GNU Lesser General Public License as
7    * published by the Free Software Foundation; either version 2.1 of
8    * the License, or (at your option) any later version.
9    *
10    * This software is distributed in the hope that it will be useful,
11    * but WITHOUT ANY WARRANTY; without even the implied warranty of
12    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13    * Lesser General Public License for more details.
14    *
15    * You should have received a copy of the GNU Lesser General Public
16    * License along with this software; if not, write to the Free
17    * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
18    * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
19    */
20    package com.xpn.xwiki.test.mockito;
21   
22    import org.xwiki.cache.config.CacheConfiguration;
23    import org.xwiki.model.reference.DocumentReference;
24   
25    import com.xpn.xwiki.XWikiContext;
26    import com.xpn.xwiki.doc.XWikiDocument;
27   
28    import static org.mockito.ArgumentMatchers.any;
29    import static org.mockito.ArgumentMatchers.argThat;
30   
31    /**
32    * Various matchers for oldcore APIs.
33    *
34    * @version $Id: c958555189d8d50aecfb97545f6baf4a06c7720e $
35    * @since 7.0M1
36    */
 
37    public class OldcoreMatchers
38    {
 
39  0 toggle public static XWikiDocument isDocument(DocumentReference expected)
40    {
41  0 return argThat(new XWikiDocumentMatcher(expected));
42    }
43   
44    /**
45    * @since 7.1M1
46    */
 
47  2 toggle public static CacheConfiguration isCacheConfiguration(String id)
48    {
49  2 return argThat(new CacheConfigurationMatcher(id));
50    }
51   
52    /**
53    * Any <code>XWikiContext</code>.
54    *
55    * @since 7.3RC1
56    */
 
57  5220 toggle public static XWikiContext anyXWikiContext()
58    {
59  5220 return any(XWikiContext.class);
60    }
61   
62    /**
63    * Any <code>XWikiDocument</code>.
64    *
65    * @since 7.3RC1
66    */
 
67  3348 toggle public static XWikiDocument anyXWikiDocument()
68    {
69  3348 return any(XWikiDocument.class);
70    }
71    }