src/java-tests/isac/functest/specify/TestSpecify.java
author wneuper
Mon, 27 Jun 2005 18:12:55 +0200
changeset 2542 c8eb75c725c6
parent 2441 294971eede48
child 3928 d38196e9b162
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:37:02 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  * @see isac.bridge.TestSpecify for related tests
    15  */
    16 public class TestSpecify extends TestCase {
    17 
    18     /**
    19      * {\bf\UC{Having \isac{} Complete the
    20      * Specification}\label{SPECIFY:COMPLETE:spec_}\\} When doing a prepared
    21      * example, the user can have the Specification completed by \isac{} with
    22      * data from the hidden specification.
    23      * 
    24      * @see isac.bridge.TestSpecify#testCompleteSpecification() for the related
    25      *      methodcalls in the bridge.
    26      */
    27     public void testCompleteSpecification() {
    28         System.out
    29                 .println("---BEGIN isac.functest.TestSpecify#testCompleteSpecification");
    30         System.out.println("TODO");
    31         assertEquals("TODO", "TODO");
    32         System.out
    33                 .println("---END isac.functest.TestSpecify#testCompleteSpecification");
    34     }
    35 
    36     /**
    37      * {\bf\UC{Having \isac{} Complete One Field of the
    38      * Specification}\label{SPECIFY:COMPLETE:specone}\\} The user can have one
    39      * field of the Specification (fields Theory, Problem, Method) completed by
    40      * \isac{} from data entered so far.
    41      * 
    42      * @see isac.bridge.TestSpecify#testCompleteOneFieldOfSpecification() for
    43      *      the related methodcalls in the bridge.
    44      */
    45     public void testCompleteOneFieldOfSpecification() {
    46         System.out
    47                 .println("---BEGIN isac.functest.TestSpecify#testCompleteOneFieldOfSpecification");
    48         System.out.println("TODO");
    49         assertEquals("TODO", "TODO");
    50         System.out
    51                 .println("---END isac.functest.TestSpecify#testCompleteOneFieldOfSpecification");
    52     }
    53 }