| /******************************************************************************* | |
| * Copyright (c) 2009 The University of York. | |
| * This program and the accompanying materials | |
| * are made available under the terms of the Eclipse Public License 2.0 | |
| * which is available at https://www.eclipse.org/legal/epl-2.0/ | |
| * | |
| * Contributors: | |
| * Dimitrios Kolovos - initial API and implementation | |
| ******************************************************************************/ | |
| /** | |
| * <copyright> | |
| * </copyright> | |
| * | |
| * $Id$ | |
| */ | |
| package friends.tests; | |
| import junit.framework.Test; | |
| import junit.framework.TestSuite; | |
| import junit.textui.TestRunner; | |
| /** | |
| * <!-- begin-user-doc --> | |
| * A test suite for the '<em><b>Friends</b></em>' model. | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| public class FriendsAllTests extends TestSuite { | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| public static void main(String[] args) { | |
| TestRunner.run(suite()); | |
| } | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| public static Test suite() { | |
| TestSuite suite = new FriendsAllTests("Friends Tests"); | |
| return suite; | |
| } | |
| /** | |
| * <!-- begin-user-doc --> | |
| * <!-- end-user-doc --> | |
| * @generated | |
| */ | |
| public FriendsAllTests(String name) { | |
| super(name); | |
| } | |
| } //FriendsAllTests |