blob: 2c0c3e66a9e2d7299f0edd00e1fba7360b86a79d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Oracle. 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:
* Oracle - initial API and implementation
******************************************************************************/
package org.eclipse.jpt.common.utility.tests.internal.stack;
import java.util.ArrayList;
import org.eclipse.jpt.common.utility.internal.stack.StackTools;
import org.eclipse.jpt.common.utility.stack.Stack;
public class ListStackTests
extends StackTests
{
public ListStackTests(String name) {
super(name);
}
@Override
Stack<String> buildStack() {
return StackTools.adapt(new ArrayList<String>());
}
@Override
public void testClone() {
// unsupported
}
}