blob: 2523e40f5b37bc4749c2f89f3db605a5b1df860a [file] [log] [blame]
/*
* Copyright (c) 2019 BSI Business Systems Integration AG.
* 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:
* BSI Business Systems Integration AG - initial API and implementation
*/
package org.eclipse.scout.rt.jackson.dataobject;
import java.util.stream.Collectors;
import org.eclipse.scout.rt.dataobject.id.IStringId;
import org.eclipse.scout.rt.dataobject.testing.AbstractStringIdStructureTest;
import org.junit.runners.Parameterized.Parameters;
public class StringIdStructureTest extends AbstractStringIdStructureTest {
@Parameters(name = "{0}")
public static Iterable<? extends Object> parameters() {
return streamStringIdClasses("org.eclipse.scout.rt.jackson").peek(c -> {
System.out.println(c);
})
.collect(Collectors.toList());
}
public StringIdStructureTest(Class<? extends IStringId> id) {
super(id);
}
}