Clover Coverage Report
Coverage timestamp: Fri May 24 2013 13:47:27 UTC
5   53   3   1.67
0   17   0.6   3
3     1  
1    
 
  ProofCheckerFactoryImplTest       Line # 27 5 3 75% 0.75
 
  (1)
 
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;
17   
18    import org.qedeq.base.io.Version;
19    import org.qedeq.kernel.bo.logic.proof.common.ProofChecker;
20    import org.qedeq.kernel.bo.test.QedeqBoTestCase;
21   
22    /**
23    * Test class.
24    *
25    * @author Michael Meyling
26    */
 
27    public class ProofCheckerFactoryImplTest extends QedeqBoTestCase {
28   
29    /**
30    * Constructor.
31    *
32    */
 
33  0 toggle public ProofCheckerFactoryImplTest() {
34  0 super();
35    }
36   
37    /**
38    * Constructor.
39    *
40    * @param name Test case name.
41    *
42    */
 
43  1 toggle public ProofCheckerFactoryImplTest(final String name) {
44  1 super(name);
45    }
46   
 
47  1 toggle public void testCreateFormulaChecker() {
48  1 ProofCheckerFactoryImpl impl = new ProofCheckerFactoryImpl();
49  1 ProofChecker check = impl.createProofChecker(new Version("1.00.00"));
50  1 assertNotNull(check);
51    }
52   
53    }