blob: a949d39537d323701d91f7843700d2c34dfee858 [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2015-2019 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* 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.
*
* SPDX-License-Identifier: EPL-2.0
*
********************************************************************************/
package org.eclipse.mdm.businessobjects.boundary.integrationtest;
import org.eclipse.mdm.businessobjects.boundary.ResourceConstants;
import org.junit.BeforeClass;
import com.google.gson.JsonObject;
import com.google.gson.JsonPrimitive;
/**
* Test class for PhysicalDimensionResource.
*
* @author Alexander Nehmer, science+computing AG Tuebingen (Atos SE)
* @see EntityResourceIntegrationTest
*
*/
public class PhysicalDimensionResourceIntegrationTest extends EntityResourceIntegrationTest {
@BeforeClass
public static void prepareTestData() {
getLogger().debug("Preparing PhysicalDimensionResourceIntegrationTest");
// set up test data
setContextClass(PhysicalDimensionResourceIntegrationTest.class);
putTestDataValue(TESTDATA_RESOURCE_URI, "/physicaldimensions");
putTestDataValue(TESTDATA_ENTITY_NAME, "testPhysicalDimension");
putTestDataValue(TESTDATA_ENTITY_TYPE, "PhysicalDimension");
JsonObject json = new JsonObject();
json.add(ResourceConstants.ENTITYATTRIBUTE_NAME, new JsonPrimitive(getTestDataValue(TESTDATA_ENTITY_NAME)));
putTestDataValue(TESTDATA_CREATE_JSON_BODY, json.toString());
json = new JsonObject();
json.add("Mass", new JsonPrimitive(1));
putTestDataValue(TESTDATA_UPDATE_JSON_BODY, json.toString());
}
}