blob: 4458c521dde72b367ffa1979fdeb0a8213e89937 [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2011 GitHub Inc.
* 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
*
* Contributors:
* Kevin Sawicki (GitHub Inc.) - initial API and implementation
*****************************************************************************/
package org.eclipse.egit.github.core.tests;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNull;
import org.eclipse.egit.github.core.FieldError;
import org.junit.Test;
/**
* Unit tests of {@link FieldError}
*/
public class FieldErrorTest {
/**
* Test default state of field error
*/
@Test
public void defaultState() {
FieldError error = new FieldError();
assertNull(error.getCode());
assertNull(error.getField());
assertNull(error.getMessage());
assertNull(error.getResource());
assertNull(error.getValue());
}
/**
* Test updating field error fields
*/
@Test
public void updateFields() {
FieldError error = new FieldError();
assertEquals("invalid", error.setCode("invalid").getCode());
assertEquals("name", error.setField("name").getField());
assertEquals("commit", error.setResource("commit").getResource());
assertEquals("message", error.setMessage("message").getMessage());
assertEquals("-1", error.setValue("-1").getValue());
}
}