blob: 40f3d7b24ed6150481400f1da091b0a37a5d2fc6 [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.mics.home.viewmodel;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import org.eclipse.openk.mics.home.common.JsonGeneratorBase;
import org.eclipse.openk.mics.home.common.util.ResourceLoaderBase;
import org.junit.Test;
public class ErrorReturnTest extends ResourceLoaderBase {
// IMPORTANT TEST!!!
// Make sure, our Interface produces a DEFINED Json!
// Changes in the interface will HOPEFULLY crash here!!!
@Test
public void TestStructureAgainstJson() {
String json = super.loadStringFromResource("testErrorReturn.json");
ErrorReturn errRet = JsonGeneratorBase.getGson().fromJson(json, ErrorReturn.class);
assertFalse(errRet.getErrorText().isEmpty());
assertEquals(errRet.getErrorCode(), 999);
}
@Test
public void TestSetters() {
ErrorReturn errRet = new ErrorReturn();
errRet.setErrorCode(1);
errRet.setErrorText("bla bla");
}
}