Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'deprecated/library (emf 2.3)/Library.tests/src/org/eclipse/example/library/tests/LibraryTest.java')
-rw-r--r--deprecated/library (emf 2.3)/Library.tests/src/org/eclipse/example/library/tests/LibraryTest.java91
1 files changed, 0 insertions, 91 deletions
diff --git a/deprecated/library (emf 2.3)/Library.tests/src/org/eclipse/example/library/tests/LibraryTest.java b/deprecated/library (emf 2.3)/Library.tests/src/org/eclipse/example/library/tests/LibraryTest.java
deleted file mode 100644
index 252f58c5a..000000000
--- a/deprecated/library (emf 2.3)/Library.tests/src/org/eclipse/example/library/tests/LibraryTest.java
+++ /dev/null
@@ -1,91 +0,0 @@
-/**
- * <copyright>
- * </copyright>
- *
- * $Id: LibraryTest.java,v 1.1 2008/04/01 07:32:44 mtaal Exp $
- */
-package org.eclipse.example.library.tests;
-
-import junit.framework.TestCase;
-
-import junit.textui.TestRunner;
-
-import org.eclipse.example.library.Library;
-import org.eclipse.example.library.LibraryFactory;
-
-/**
- * <!-- begin-user-doc -->
- * A test case for the model object '<em><b>Library</b></em>'.
- * <!-- end-user-doc -->
- * @generated
- */
-public class LibraryTest extends TestCase {
-
- /**
- * The fixture for this Library test case.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @generated
- */
- protected Library fixture = null;
-
- /**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @generated
- */
- public static void main(String[] args) {
- TestRunner.run(LibraryTest.class);
- }
-
- /**
- * Constructs a new Library test case with the given name.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @generated
- */
- public LibraryTest(String name) {
- super(name);
- }
-
- /**
- * Sets the fixture for this Library test case.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @generated
- */
- protected void setFixture(Library fixture) {
- this.fixture = fixture;
- }
-
- /**
- * Returns the fixture for this Library test case.
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @generated
- */
- private Library getFixture() {
- return fixture;
- }
-
- /**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @see junit.framework.TestCase#setUp()
- * @generated
- */
- protected void setUp() throws Exception {
- setFixture(LibraryFactory.eINSTANCE.createLibrary());
- }
-
- /**
- * <!-- begin-user-doc -->
- * <!-- end-user-doc -->
- * @see junit.framework.TestCase#tearDown()
- * @generated
- */
- protected void tearDown() throws Exception {
- setFixture(null);
- }
-
-} //LibraryTest

Back to the top