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