1 /* 2 * The SmartWeb Framework 3 * Copyright (C) 2004-2006 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 18 * 19 * For further informations on the SmartWeb Framework please visit 20 * 21 * http://smartweb.sourceforge.net 22 */ 23 package net.smartlab.web; 24 25 import junit.framework.TestCase; 26 27 28 /** 29 * @TODO documentation 30 * @author rlogiacco@smartlab.net 31 * 32 */ 33 public class DomainTest extends TestCase { 34 35 /** 36 * @see junit.framework.TestCase#setUp() 37 */ 38 protected void setUp() throws Exception { 39 super.setUp(); 40 } 41 42 /** 43 * @see junit.framework.TestCase#tearDown() 44 */ 45 protected void tearDown() throws Exception { 46 super.tearDown(); 47 } 48 49 /** 50 * Test method for {@link net.smartlab.web.Domain#begin(net.smartlab.web.BusinessObjectFactory)}. 51 */ 52 public void testBegin() { 53 fail("Not yet implemented"); 54 } 55 56 /** 57 * Test method for {@link net.smartlab.web.Domain#commit(org.hibernate.Transaction)}. 58 */ 59 public void testCommit() { 60 fail("Not yet implemented"); 61 } 62 63 /** 64 * Test method for {@link net.smartlab.web.Domain#rollback(org.hibernate.Transaction)}. 65 */ 66 public void testRollback() { 67 fail("Not yet implemented"); 68 } 69 70 /** 71 * Test method for {@link net.smartlab.web.Domain#Domain()}. 72 */ 73 public void testDomain() { 74 fail("Not yet implemented"); 75 } 76 77 /** 78 * Test method for {@link net.smartlab.web.Domain#getConfiguration()}. 79 */ 80 public void testGetConfiguration() { 81 fail("Not yet implemented"); 82 } 83 84 /** 85 * Test method for {@link net.smartlab.web.Domain#getConfiguration(java.lang.String)}. 86 */ 87 public void testGetConfigurationString() { 88 fail("Not yet implemented"); 89 } 90 91 /** 92 * Test method for {@link net.smartlab.web.Domain#getResource(java.lang.Class, java.lang.String[])}. 93 */ 94 public void testGetResource() { 95 fail("Not yet implemented"); 96 } 97 98 /** 99 * Test method for {@link net.smartlab.web.Domain#getLastArchiveName(java.lang.Class)}. 100 */ 101 public void testGetLastArchiveName() { 102 fail("Not yet implemented"); 103 } 104 }