blob: 319fb2bbdf2409491b56c23cb94a35dcd0ef924d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016, 2018 Willink Transformations and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* E.D.Willink - initial API and implementation
*******************************************************************************/
package org.eclipse.qvtd.doc.exe2016.tests;
import org.eclipse.ocl.examples.xtext.tests.TestUtil;
import junit.framework.TestCase;
public class AbstractEXE2016CGTests extends TestCase
{
public static void garbageCollect() throws InterruptedException {
for (int y = 0; y < 5; y++) {
System.gc();
Thread.sleep(100);
}
}
@Override
public String getName() {
return TestUtil.getName(super.getName());
}
}