1 //////////////////////////////////////////////////////////////////////////////// 2 //CabaWeb 3 //Copyright (C) 2004 Thomas Vogt <Thomas.Vogt@TVC-Software.com> 4 // 5 //This library is free software; you can redistribute it and/or 6 //modify it under the terms of the GNU Lesser General Public 7 //License as published by the Free Software Foundation; either 8 //version 2.1 of the License, or (at your option) any later version. 9 // 10 //This library 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 GNU 13 //Lesser General Public License for more details. 14 // 15 //You should have received a copy of the GNU Lesser General Public 16 //License along with this library; if not, write to the Free Software 17 //Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 //////////////////////////////////////////////////////////////////////////////// 19 20 package org.fhw.cabaweb.junittests; 21 22 import org.fhw.cabaweb.data.DataInterfaceErgebnissdatenUntergruppierungsnamen; 23 24 import junit.framework.TestCase; 25 26 /*** 27 * Klasse für den Test der Datenzugriffe auf Ergebnissdaten_Untergruppierungsnamen 28 * 29 * @author <a href="mailto:thomas.vogt@tvc-software.com">Thomas Vogt</a> 30 * @version Version 1.0 24.05.2004 31 */ 32 public class DataInterfaceErgebnissdatenUntergruppierungsnamenTest extends TestCase 33 { 34 // private DataInterfaceErgebnissdatenUntergruppierungsnamen test; 35 36 public static void main(String[] args) 37 { 38 junit.textui.TestRunner.run(DataInterfaceErgebnissdatenUntergruppierungsnamenTest.class); 39 } 40 41 /* 42 * @see TestCase#setUp() 43 */ 44 protected void setUp() throws Exception 45 { 46 super.setUp(); 47 48 // test = new DataInterfaceErgebnissdatenUntergruppierungsnamen(); 49 } 50 51 /* 52 * @see TestCase#tearDown() 53 */ 54 protected void tearDown() throws Exception 55 { 56 super.tearDown(); 57 } 58 59 final public void testErzeugen() 60 { 61 //TODO erzeugen() muss implementiert werden. 62 } 63 64 final public void testEditieren() 65 { 66 //TODO editieren() muss implementiert werden. 67 } 68 69 final public void testLoeschen() 70 { 71 //TODO loeschen() muss implementiert werden. 72 } 73 74 final public void testSucheAlle() 75 { 76 //TODO sucheAlle() muss implementiert werden. 77 } 78 79 final public void testSucheGruppierungsnummer() 80 { 81 //TODO sucheGruppierungsnummer() muss implementiert werden. 82 } 83 84 final public void testSucheUntergruppierungsnummer() 85 { 86 //TODO sucheUntergruppierungsnummer() muss implementiert werden. 87 } 88 89 final public void testSucheProjektnummer() 90 { 91 //TODO sucheProjektnummer() muss implementiert werden. 92 } 93 94 final public void testSucheUntergruppierungsname() 95 { 96 //TODO sucheUntergruppierungsname() muss implementiert werden. 97 } 98 99 final public void testSucheKombination() 100 { 101 //TODO sucheKombination() muss implementiert werden. 102 } 103 104 }