01: /*
02: * Wilos Is a cLever process Orchestration Software - http://www.wilos-project.org
03: * Copyright (C) 2006-2007 Paul Sabatier University, IUP ISI (Toulouse, France) <massie@irit.fr>
04: *
05: * This program is free software; you can redistribute it and/or modify it under the terms of the GNU
06: * General Public License as published by the Free Software Foundation; either version 2 of the License,
07: * or (at your option) any later version.
08: *
09: * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
10: * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11: * GNU General Public License for more details.
12: *
13: * You should have received a copy of the GNU General Public License along with this program; if not,
14: * write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
15: */
16:
17: package wilos.test.model.spem2;
18:
19: import org.junit.runner.RunWith;
20: import org.junit.runners.Suite;
21:
22: @RunWith(Suite.class)
23: @Suite.SuiteClasses({wilos.test.model.spem2.element.TestSuite.class,wilos.test.model.spem2.activity.TestSuite.class,wilos.test.model.spem2.breakdownelement.TestSuite.class,wilos.test.model.spem2.process.TestSuite.class,wilos.test.model.spem2.role.TestSuite.class,wilos.test.model.spem2.task.TestSuite.class,wilos.test.model.spem2.workbreakdownelement.TestSuite.class,wilos.test.model.spem2.phase.TestSuite.class,wilos.test.model.spem2.iteration.TestSuite.class,wilos.test.model.spem2.workproduct.TestSuite.class})
24: public class TestSuite {
25: // None.
26: }
|