|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| FormulaCheckException | Line # 31 | 2 | 2 | 50% |
0.5
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||
| (12) | |||
| Result | |||
|
0.5
|
org.qedeq.kernel.bo.latex.GenerateLatexTest.testNegative06
org.qedeq.kernel.bo.latex.GenerateLatexTest.testNegative06
|
1 PASS | |
|
0.5
|
org.qedeq.kernel.bo.logic.wf.CheckLogicTest.testNegative02
org.qedeq.kernel.bo.logic.wf.CheckLogicTest.testNegative02
|
1 PASS | |
|
0.5
|
org.qedeq.kernel.bo.latex.GenerateLatexTest.testNegative06
org.qedeq.kernel.bo.latex.GenerateLatexTest.testNegative06
|
1 PASS | |
|
0.5
|
org.qedeq.kernel.bo.logic.wf.CheckLogicTest.testNegative04
org.qedeq.kernel.bo.logic.wf.CheckLogicTest.testNegative04
|
1 PASS | |
|
0.5
|
org.qedeq.kernel.bo.latex.GenerateLatexTest.testNegative05
org.qedeq.kernel.bo.latex.GenerateLatexTest.testNegative05
|
1 PASS | |
|
0.5
|
org.qedeq.kernel.bo.logic.wf.CheckLogicTest.testNegative03
org.qedeq.kernel.bo.logic.wf.CheckLogicTest.testNegative03
|
1 PASS | |
|
0.5
|
org.qedeq.kernel.xml.parser.CharsetParserTest.testParse2
org.qedeq.kernel.xml.parser.CharsetParserTest.testParse2
|
1 PASS | |
|
0.5
|
org.qedeq.kernel.bo.latex.GenerateLatexTest.testNegative07
org.qedeq.kernel.bo.latex.GenerateLatexTest.testNegative07
|
1 PASS | |
|
0.5
|
org.qedeq.kernel.bo.latex.GenerateLatexTest.testNegative07
org.qedeq.kernel.bo.latex.GenerateLatexTest.testNegative07
|
1 PASS | |
|
0.5
|
org.qedeq.kernel.xml.parser.CharsetParserTest.testParse1
org.qedeq.kernel.xml.parser.CharsetParserTest.testParse1
|
1 PASS | |
|
0.5
|
org.qedeq.kernel.bo.service.QedeqBoFormalLogicCheckerTest.testCheckModule
org.qedeq.kernel.bo.service.QedeqBoFormalLogicCheckerTest.testCheckModule
|
1 PASS | |
|
0.5
|
org.qedeq.kernel.bo.latex.GenerateLatexTest.testNegative05
org.qedeq.kernel.bo.latex.GenerateLatexTest.testNegative05
|
1 PASS | |
| 1 | /* This file is part of the project "Hilbert II" - http://www.qedeq.org | |
| 2 | * | |
| 3 | * Copyright 2000-2010, 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.wf; | |
| 17 | ||
| 18 | import org.qedeq.kernel.base.list.Element; | |
| 19 | import org.qedeq.kernel.common.ModuleContext; | |
| 20 | ||
| 21 | /** | |
| 22 | * This is an exception for logical errors within a QEDEQ module. | |
| 23 | * | |
| 24 | * A checked formula has an syntactical error. That is for example: | |
| 25 | * Mixture of free and bound occurrence of a subject variable, | |
| 26 | * element list that is has a subject variable operator but has not | |
| 27 | * exactly one element that is an atom. | |
| 28 | * | |
| 29 | * @author Michael Meyling | |
| 30 | */ | |
| 31 | public class FormulaCheckException extends LogicalCheckException { | |
| 32 | ||
| 33 | /** | |
| 34 | * Constructs an exception. | |
| 35 | * | |
| 36 | * @param errorCode ErrorCode of this message. | |
| 37 | * @param message What is the problem. | |
| 38 | * @param element Problematic formula. | |
| 39 | * @param context Error location. Not necessarily pointing to | |
| 40 | * <code>element</code>. | |
| 41 | * @param referenceContext Reference location. | |
| 42 | */ | |
| 43 | 0 |
public FormulaCheckException(final int errorCode, final String message, final Element element, |
| 44 | final ModuleContext context, final ModuleContext referenceContext) { | |
| 45 | 0 | super(errorCode, message, element, context, referenceContext); |
| 46 | } | |
| 47 | ||
| 48 | /** | |
| 49 | * Constructs an exception. | |
| 50 | * | |
| 51 | * @param errorCode ErrorCode of this message. | |
| 52 | * @param message What is the problem. | |
| 53 | * @param element Problematic formula. | |
| 54 | * @param context Error location. Not necessarily pointing to | |
| 55 | * <code>element</code>. | |
| 56 | */ | |
| 57 | 87 |
public FormulaCheckException(final int errorCode, final String message, |
| 58 | final Element element, final ModuleContext context) { | |
| 59 | 87 | super(errorCode, message, element, context); |
| 60 | } | |
| 61 | ||
| 62 | } | |
|
||||||||||