Clover Coverage Report
Coverage timestamp: Fri May 24 2013 13:47:27 UTC
3   49   3   1
0   11   1   3
3     1  
1    
 
  ModelPredicateConstantTest       Line # 24 3 3 66.7% 0.6666667
 
  (3)
 
1    /* This file is part of the project "Hilbert II" - http://www.qedeq.org
2    *
3    * Copyright 2000-2013, Michael Meyling <mime@qedeq.org>.
4    *
5    * "Hilbert II" is free software; you can redistribute
6    * it and/or modify it under the terms of the GNU General Public
7    * License as published by the Free Software Foundation; either
8    * version 2 of the License, or (at your option) any later version.
9    *
10    * This program 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
13    * GNU General Public License for more details.
14    */
15   
16    package org.qedeq.kernel.bo.logic.model;
17   
18   
19    /**
20    * Test class.
21    *
22    * @author Michael Meyling
23    */
 
24    public class ModelPredicateConstantTest extends OperatorTest {
25   
26    /**
27    * Constructor.
28    *
29    */
 
30  0 toggle public ModelPredicateConstantTest() {
31  0 super();
32    }
33   
34    /**
35    * Constructor.
36    *
37    * @param name Test case name.
38    *
39    */
 
40  5 toggle public ModelPredicateConstantTest(final String name) {
41  5 super(name);
42    }
43   
 
44  12 toggle protected Operator getOperator(final String name, final int number) {
45  12 return new ModelPredicateConstant(name, number);
46    }
47   
48   
49    }