blob: fa9b197b22448378c4fa791a593894e1725f8e2e [file] [log] [blame]
/**
******************************************************************************
* Copyright © 2018 PTA GmbH.
* 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
*
******************************************************************************
*/
package org.eclipse.openk.api;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.junit.Test;
import java.io.IOException;
import static org.junit.Assert.assertEquals;
public class VersionInfoTest {
@Test
public void testGetVersionInfo() throws IOException {
VersionInfo vi = new VersionInfo();
vi.setBackendVersion("123");
ObjectMapper om = new ObjectMapper();
String jsonString = om.writeValueAsString(vi);
VersionInfo vi2 = om.readValue(jsonString, VersionInfo.class);
assertEquals(vi.getBackendVersion(), vi2.getBackendVersion());
}
}