blob: 3417dc24eb3a03ad1a51c5841c5416d40e1b6c03 [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2017 ANSYS medini Technologies AG
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* ANSYS medini Technologies AG - initial API and implementation
******************************************************************************/
package org.eclipse.opencert.elastic;
import org.junit.Assert;
import org.junit.Test;
import com.google.gson.JsonObject;
@SuppressWarnings({ "javadoc" })
public class EObjectToJsonTest {
@Test
public void testOutsideResource() {
JsonObject json = EObjectToJson.INSTANCE.convert(TestData.createComponent());
Assert.assertNotNull(json);
System.out.println(json.toString());
}
@Test
public void testInResource() {
JsonObject json = EObjectToJson.INSTANCE.convert(TestData.createComponent(true));
Assert.assertNotNull(json);
System.out.println(json.toString());
}
}