blob: 62d1a4a9f82202d74a62404ed8b5bfe71d86258b [file] [log] [blame]
/*
*******************************************************************************
* Copyright (c) 2018 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");
}
}