src/java-tests/isac/gui/WorksheetTest.java
author akirchst
Wed, 25 Aug 2004 10:32:27 +0200
changeset 1728 aa5c4d1ce0e9
parent 1721 584585cc99b3
permissions -rw-r--r--
*** empty log message ***
     1 /****************************************************************** 
     2 * Copyright (c) 2004, Alois Kirchsteiger, Student of 
     3 * Software Engineering at FH-Hagenberg, Austria. 
     4 * Project member of the isac team at the Institute for 
     5 * Software-Technologie, Graz University of Technology, Austria. 
     6 * 
     7 * Use is subject to license terms.
     8 ******************************************************************/
     9 
    10 //TODO: implement!!!
    11 
    12 package isac.gui;
    13 
    14 import junit.framework.TestCase;
    15 import isac.gui.*;
    16 
    17 /**
    18  * @author Alois Kirchsteiger
    19  */
    20 public class WorksheetTest extends TestCase {
    21 
    22 	public static void main(String[] args) {
    23 		junit.swingui.TestRunner.run(WorksheetTest.class);
    24 	}
    25 
    26 	public void testWorksheet() {
    27 	}
    28 
    29 	public void testBuildMenu() {
    30 	}
    31 
    32 	public void testInitMouseListener() {
    33 	}
    34 
    35 	public void testSetTreeTableModel() {
    36 	}
    37 
    38 	public void testTryMatch() {
    39 	}
    40 
    41 	public void testTryRefine() {
    42 	}
    43 
    44 	public void testShowApplicableTactics() {
    45 	}
    46 
    47 	public void testIsCallProblemAllowed() {
    48 	}
    49 
    50 	public void testIsCalculationStarted() {
    51 	}
    52 
    53 	public void testActionPerformed() {
    54 		
    55 	}
    56 
    57 	public void testCalcChanged() {
    58 	}
    59 
    60 }