blob: fc2450b85b136e1f360d19cd57cafeb3e46c6775 [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
*/
package org.eclipse.persistence.testing.jaxb.xmlaccessortype;
import org.eclipse.persistence.testing.jaxb.schemagen.SchemaGenTestCases;
public class IgnoreInvalidNonPublicFieldTestCases extends SchemaGenTestCases {
private static final String PATH = "org/eclipse/persistence/testing/jaxb/xmlaccessortype/";
/**
* This is the preferred (and only) constructor.
*
*/
public IgnoreInvalidNonPublicFieldTestCases(String name) throws Exception {
super(name);
}
public void testPublicMemberAccess() throws Exception {
MySchemaOutputResolver outputResolver = new MySchemaOutputResolver();
generateSchema(new Class[]{Root.class}, outputResolver, null);
String result = validateAgainstSchema(PATH + "root_public.xml", outputResolver);
assertTrue("Schema validation failed unxepectedly: " + result, result == null);
}
}