blob: 2e9ed5afd70e81f88181fea006dd140875b55bbf [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 org.eclipse.jpt.common.utility.internal.deque.DequeTools;
import org.eclipse.jpt.common.utility.internal.stack.StackTools;
import org.eclipse.jpt.common.utility.stack.Stack;
public class DequeStackTests
extends StackTests
{
public DequeStackTests(String name) {
super(name);
}
@Override
Stack<String> buildStack() {
return StackTools.adapt(DequeTools.<String>arrayDeque());
}
@Override
public void testClone() {
// unsupported
}
}