Clover Coverage Report - EasyMock 2.4
Coverage timestamp: mer. juil. 2 2008 02:17:38 CEST
2   21   2   1
0   11   1   2
2     1  
1    
 
 
  AlwaysMatcher       Line # 10 2 2 100% 1.0
 
  (17)
 
1    /*
2    * Copyright (c) 2001-2008 OFFIS, Tammo Freese.
3    * This program is made available under the terms of the MIT License.
4    */
5    package org.easymock.internal;
6   
7    import org.easymock.AbstractMatcher;
8   
9    @SuppressWarnings("deprecation")
 
10    public class AlwaysMatcher extends AbstractMatcher {
11   
12    private static final long serialVersionUID = 592339838132342008L;
13   
 
14  50 toggle public boolean matches(Object[] expected, Object[] actual) {
15  50 return true;
16    }
17   
 
18  2 toggle protected String argumentToString(Object argument) {
19  2 return "<any>";
20    }
21    }