blob: 30f738983ff010673e2eb7c59d2a22e086a76970 [file] [log] [blame]
/*
* Copyright (c) 2018, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Radek Felcman - 2.7.3 - initial implementation
package org.eclipse.persistence.testing.jaxb.json.array;
import org.eclipse.persistence.jaxb.MarshallerProperties;
import org.eclipse.persistence.jaxb.UnmarshallerProperties;
import org.eclipse.persistence.testing.jaxb.json.JSONTestCases;
import org.eclipse.persistence.testing.jaxb.json.type.model.Person;
import java.util.ArrayList;
import java.util.List;
/**
* Tests marshall/unmarshal List of Strings (List<String>).
*
* @author Radek Felcman
*
*/
public class StringListTestCases extends JSONTestCases {
private final static String JSON_RESOURCE = "org/eclipse/persistence/testing/jaxb/json/array/string_array.json";
public StringListTestCases(String name) throws Exception {
super(name);
setClasses(new Class[]{String.class});
setControlJSON(JSON_RESOURCE);
}
@Override
public void setUp() throws Exception{
super.setUp();
jsonMarshaller.setProperty(MarshallerProperties.JSON_INCLUDE_ROOT, false);
jsonUnmarshaller.setProperty(UnmarshallerProperties.JSON_INCLUDE_ROOT, false);
}
@Override
protected Object getControlObject() {
List<String> stringList = new ArrayList<>();
stringList.add("aaa");
stringList.add("bbb");
stringList.add("ccc");
stringList.add(null);
return stringList;
}
}