From: Pieter v. Z. <pv...@us...> - 2005-08-10 08:06:34
|
Update of /cvsroot/coefficient/mailForum/src-test/za/org/coefficient/modules/mailforum In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6406/modules/mailForum/src-test/za/org/coefficient/modules/mailforum Added Files: MailForumModuleTestSuite.java Log Message: added MailForumModuleTestSuite to included all test cases for the mailForum module --- NEW FILE: MailForumModuleTestSuite.java --- /** * * * Coefficient - facilitates project based collaboration * Copyright (C) 2005, Meraka Insitute, Pieter van Zyl * PO Box 395 * Pretoria 0001, RSA * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package za.org.coefficient.modules.mailforum; import junit.framework.Test; import junit.framework.TestSuite; /** * This TestSuite includes all the test cases for the mailForum module. * * @author pieter20 Aug 8, 2005 * */ public class MailForumModuleTestSuite { /** * Aug 8, 2005 * * @author pieter20 */ public MailForumModuleTestSuite() { super(); } /** * Currently there is only one test case: MailForumTest which test the forum * creation * * @author pieter20 Aug 10, 2005 * @return */ public static Test suite() { TestSuite mailForumModuleTestSuite = new TestSuite(); mailForumModuleTestSuite.addTestSuite(MailForumTest.class); return mailForumModuleTestSuite; } /** * @author pieter20 Aug 8, 2005 * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub } } |