blob: 1478dc79922570bd4e7fa71911ad672da61b8a9e [file] [log] [blame]
/*
*******************************************************************************
* Copyright (c) {date} 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.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());
}
}