src/java-tests/isac/functest/specify/TestModel.java
author wneuper
Mon, 27 Jun 2005 18:12:55 +0200
changeset 2541 2e47726e226e
parent 2420 a1ce74c0c128
child 2577 f22246c49589
permissions -rw-r--r--
all: interlinked and completed JUnit testcases
     1 /*
     2  * @author Walther Neuper, member of the ISAC-team, 
     3  * Copyright (c) 2004 by Walther Neuper 
     4  * created Sep 28, 2004, 3:47:22 PM
     5  * Institute for Softwaretechnology, Graz University of Technology, Austria.
     6  * 
     7  * Use is subject to license terms.
     8  */
     9 package isac.functest.specify;
    10 
    11 import junit.framework.TestCase;
    12 
    13 /**
    14  * TODO TestModel + input a completely new example
    15  * 
    16  * @link fully.qualified.Calss#method(fully.qualified.Param)
    17  * @author Walther Neuper Sep 28, 2004, 3:47:22 PM
    18  * @version 1.0
    19  * @see <fully.qualified.Calssname#methodName(param-classes)>
    20  * @deprecated <if applicable write reason here, otherwise omit this line> @
    21  */
    22 public class TestModel extends TestCase {
    23 
    24     /**
    25      * {\bf\UC{Editing the Model}\label{SPECIFY:enter}\label{SPECIFY:check}\\}
    26      * The user inpts items (i.e. adds formulae to the descriptions) to the
    27      * fileds 'given', 'find' and 'relate' and gets feedback fron \sisac{} on
    28      * each item with respect to the problem from the hidden specification. No
    29      * fields of the Specification will be changed.
    30      * 
    31      * @see isac.bridge.TestModel#testEditItems() for related methodcalls
    32      *      directly to the math-engine
    33      */
    34     public void testEditItems() {
    35         System.out.println("---BEGIN isac.functest.TestModel#testEditItems");
    36         System.out.println("TODO");
    37         assertEquals("TODO", "TODO");
    38         System.out.println("---END isac.functest.TestModel#testEditItems");
    39     }
    40 
    41     /**
    42      * {\bf\UC{Having \isac{} Complete the
    43      * CalcHead}\label{SPECIFY:COMPLETE:all}\\} The user requests a CalcHead,
    44      * containing some input, to be completed automatically. WN0506 What kind of messed
    45      * input should be overwritten/corredted ???
    46      * 
    47      * @see isac.bridge.TestModel#testCompleteCalcHead() for related methodcalls
    48      *      directly to the math-engine
    49      */
    50     public void testCompleteCalcHead() {
    51         System.out
    52                 .println("---BEGIN isac.functest.TestModel#testCompleteModel");
    53         System.out.println("TODO");
    54         assertEquals("TODO", "TODO");
    55         System.out.println("---END isac.functest.TestModel#testCompleteModel");
    56     }
    57 
    58     /**
    59      * The user requests the Model of a CalcHead, containing some input, to be
    60      * completed automatically. WN0506 What kind of messed
    61      * input should be overwritten/corredted ???
    62      * 
    63      * @see isac.bridge.TestModel#testCompleteModel() for related methodcalls
    64      *      directly to the math-engine
    65      */
    66     public void testCompleteModel() {
    67         System.out
    68                 .println("---BEGIN isac.functest.TestModel#testCompleteModel");
    69         System.out.println("TODO");
    70         assertEquals("TODO", "TODO");
    71         System.out.println("---END isac.functest.TestModel#testCompleteModel");
    72     }
    73 
    74     /**
    75      * {\bf\UC{Having \isac{} Complete One Field of the
    76      * Model}\label{SPECIFY:COMPLETE:modelone}\\} When doing a prepared example,
    77      * the user can have one field of the Model completed by \isac{} with data
    78      * from the example collection.
    79      * 
    80      * @see isac.bridge.TestModel#testCompleteOneFieldOfModel() for related
    81      *      methodcalls directly to the math-engine
    82      */
    83     public void testCompleteOneFieldOfModel() {
    84         System.out
    85                 .println("---BEGIN isac.functest.TestModel#testCompleteOneFieldOfModel");
    86         System.out.println("TODO");
    87         assertEquals("TODO", "TODO");
    88         System.out
    89                 .println("---END isac.functest.TestModel#testCompleteOneFieldOfModel");
    90     }
    91 
    92 }