/******************************************************************************* * Copyright (c) 2010, Elexis und Niklaus Giger <niklaus.giger@member.fsf.org * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * N. Giger - initial implementation * *******************************************************************************/ package ch.pharmed.phmprescriber; import junit.framework.Test; import junit.framework.TestSuite; import org.junit.runner.RunWith; import org.junit.runners.Suite; @RunWith(Suite.class) @Suite.SuiteClasses({ Test_PhMPrescriber.class }) public class AllTests { public static Test suite() throws ClassNotFoundException{ return new TestSuite("PhMPrescriber Tests"); } }